fix dockerfile apt-get lock issue

E: Could not open lock file /var/cache/apt/archives/lock - open (2: No such file or directory)
E: Unable to lock the download directory
This commit is contained in:
Brice Waegeneire 2019-06-11 10:28:25 +02:00
parent 74defd4812
commit d6924bdbc3

View file

@ -3,7 +3,6 @@
# `docker run --rm -it -v $(pwd):$(pwd) -w $(pwd) stowtest`
FROM debian:jessie
RUN DEBIAN_FRONTEND=noninteractive \
apt-get clean && \
apt-get update -qq && \
apt-get install -y -q \
autoconf \
@ -18,6 +17,7 @@ apt-get install -y -q \
texinfo \
texlive \
texi2html \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Set up perlbrew