Files
docker-images/_CI-CD/distcc/Dockerfile
Udo Waechter 13898378cd
Some checks reported errors
continuous-integration/drone/push Build encountered an error
apps (some of them)
2023-12-15 18:51:23 +01:00

22 lines
535 B
Docker

FROM cr.wks/debian-stable-build-essential
RUN apt-get update && \
apt-get install -y \
gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf \
dpkg-dev distcc ccache \
build-essential gcc cpp g++ clang llvm
RUN apt-get remove -y --purge man-db ;\
apt-get autoremove -y --purge ;\
apt-get clean -y ;\
rm -rf /var/lib/apt/lists/* ;\
rm -rf /var/cache/apt/*
# Op port
EXPOSE 3632
# Stats port
EXPOSE 3633
USER distccd
ENTRYPOINT /usr/bin/distccd --no-detach --daemon --stats --log-level error --log-stderr $OPTIONS