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`
|
# `docker run --rm -it -v $(pwd):$(pwd) -w $(pwd) stowtest`
|
||||||
FROM debian:jessie
|
FROM debian:jessie
|
||||||
RUN DEBIAN_FRONTEND=noninteractive \
|
RUN DEBIAN_FRONTEND=noninteractive \
|
||||||
apt-get clean && \
|
|
||||||
apt-get update -qq && \
|
apt-get update -qq && \
|
||||||
apt-get install -y -q \
|
apt-get install -y -q \
|
||||||
autoconf \
|
autoconf \
|
||||||
|
@ -18,6 +17,7 @@ apt-get install -y -q \
|
||||||
texinfo \
|
texinfo \
|
||||||
texlive \
|
texlive \
|
||||||
texi2html \
|
texi2html \
|
||||||
|
&& apt-get clean \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# Set up perlbrew
|
# Set up perlbrew
|
||||||
|
|
Loading…
Reference in a new issue