4
0
Fork 2
mirror of https://gerrit.hackerspace.pl/hscloud synced 2024-10-18 16:17:45 +00:00
hscloud/devtools/prodimage/Dockerfile
Serge Bazanski b2d6b112b5 devtools/prodimage: create
We start having the need to have our own production image instead ofjust
a bare Ubuntu image. For instance, octorpki will need rync and TLS CA
bundles.

Change-Id: Ia8d9604ae8c320f858cfe8a2dc21ddcc321017ff
2019-07-30 13:09:26 +02:00

9 lines
214 B
Docker

FROM ubuntu:bionic-20190515
RUN set -e -x ;\
export DEBIAN_FRONTEND=noninteractive ;\
apt-get -y update ;\
apt-get -y install \
ca-certificates \
rsync ;\
rm -rf /var/lib/apt/lists