We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 083933f + 5032f43 commit 27a67c9Copy full SHA for 27a67c9
Dockerfile
@@ -19,7 +19,8 @@ RUN apt-get update && apt-get install -y \
19
protobuf-c-compiler \
20
protobuf-compiler \
21
python-minimal \
22
- --no-install-recommends
+ --no-install-recommends \
23
+ && apt-get clean
24
25
# install bats
26
RUN cd /tmp \
@@ -34,7 +35,8 @@ ENV CRIU_VERSION 1.7
34
35
RUN mkdir -p /usr/src/criu \
36
&& curl -sSL https://github.com/xemul/criu/archive/v${CRIU_VERSION}.tar.gz | tar -v -C /usr/src/criu/ -xz --strip-components=1 \
37
&& cd /usr/src/criu \
- && make install-criu
38
+ && make install-criu \
39
+ && rm -rf /usr/src/criu
40
41
# install shfmt
42
RUN mkdir -p /go/src/github.com/mvdan \
0 commit comments