surtur
bd41369dad
All checks were successful
continuous-integration/drone/push Build is passing
* needed to have a *working* image for now
14 lines
447 B
Docker
14 lines
447 B
Docker
FROM archlinux: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 \
|
|
org.label-schema.license=GPL-3.0
|
|
|
|
RUN pacman -Syu --noconfirm --needed gcc cmake make git valgrind \
|
|
&& pacman -Scc \
|
|
&& rm -rfv /var/cache/pacman/* /var/lib/pacman/sync/*
|