Removing apt upgrade statement from dockerfile

Fixes #3
This commit is contained in:
amdavidson 2019-05-10 12:10:57 -04:00 committed by GitHub
parent 550c114f27
commit a1d45f39a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,9 +1,7 @@
FROM ubuntu:16.04 FROM ubuntu:16.04
RUN apt-get update \ RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get -y upgrade \
&& DEBIAN_FRONTEND=noninteractive apt-get -y install strongswan iptables uuid-runtime ndppd openssl \ && DEBIAN_FRONTEND=noninteractive apt-get -y install strongswan iptables uuid-runtime ndppd openssl \
&& rm -rf /var/lib/apt/lists/* # cache busted 20160406.1
RUN rm /etc/ipsec.secrets RUN rm /etc/ipsec.secrets
RUN mkdir /config RUN mkdir /config