docker-archlinux-cdev/Dockerfile
surtur 43ed5c2a5e
All checks were successful
continuous-integration/drone/push Build is passing
only update the necessary packages, (no -Syu)
- move (back) away from updating the whole system, where only a handful
  of packages get's used in the end anyway. this will also drastically
  minify the resulting image size
2020-03-17 02:05:59 +01:00

13 lines
410 B
Docker

FROM archlinux/base:latest
ARG BUILD_DATE
ARG VCS_REF
LABEL org.label-schema.build-date=$BUILD_DATE \
org.label-schema.vcs-url="https://github.com/wULLSnpAXbWZGYDYyhWTKKspEQoaYxXyhoisqHf/docker-archlinux-cdev.git" \
org.label-schema.vcs-ref=$VCS_REF
RUN pacman -Sy --noconfirm --needed gcc cmake make git valgrind \
&& pacman -Scc \
&& rm -rfv /var/cache/pacman/* /var/lib/pacman/sync/*