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:
parent
74defd4812
commit
d6924bdbc3
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue