Merge pull request #1226 from nhlfr/dockerfile-cleanup

Clean apt archives and source directories in Dockerfile
This commit is contained in:
Qiang Huang 2016-12-17 09:47:55 +08:00 committed by GitHub
commit 27a67c9aa0
1 changed files with 4 additions and 2 deletions

View File

@ -19,7 +19,8 @@ RUN apt-get update && apt-get install -y \
protobuf-c-compiler \
protobuf-compiler \
python-minimal \
--no-install-recommends
--no-install-recommends \
&& apt-get clean
# install bats
RUN cd /tmp \
@ -34,7 +35,8 @@ ENV CRIU_VERSION 1.7
RUN mkdir -p /usr/src/criu \
&& curl -sSL https://github.com/xemul/criu/archive/v${CRIU_VERSION}.tar.gz | tar -v -C /usr/src/criu/ -xz --strip-components=1 \
&& cd /usr/src/criu \
&& make install-criu
&& make install-criu \
&& rm -rf /usr/src/criu
# install shfmt
RUN mkdir -p /go/src/github.com/mvdan \