Install dependencies during build

This commit is contained in:
paul 2020-08-09 21:30:33 +02:00
parent 25da189c7b
commit 6aa1f79d17

View file

@ -1,7 +1,9 @@
FROM debian:latest AS builder
RUN cat /etc/issue
RUN \
apt-get --yes update &&\
apt-get --yes install ca-certificates &&\
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
FROM scratch