surtur
43ed5c2a5e
All checks were successful
continuous-integration/drone/push Build is passing
- 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
13 lines
410 B
Docker
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/*
|