pidgin/builders

Small tweak to the app image builder

21 months ago, Gary Kramlich
5d2b5b1597d8
Small tweak to the app image builder
FROM pidgin/builders:debian-bookworm-amd64
ENV TARGET=clang
RUN set -ex && \
apt-get update && \
apt-get install -y --no-install-recommends clang && \
apt-get clean && \
rm -rf /var/lib/apt/lists
ENV CC=clang CXX=clang++
CMD ["build.sh"]