Files
docker-images/_CI-CD/debian-golang/Dockerfile
Udo Waechter 86855f541a
All checks were successful
continuous-integration/drone/push Build is passing
context for drone and cleanup/update
2023-12-15 18:04:23 +01:00

11 lines
244 B
Docker

FROM cr.wks/debian-stable
RUN apt-get update && apt-get install -y \
golang make git
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/*