Skip to content

Commit 1797622

Browse files
Merge pull request #2264 from kolyshkin/dockerfile
Dockerfile: add -f to curl
2 parents 939cd0b + 88a0244 commit 1797622

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ RUN cd /tmp \
4747
# install criu
4848
ENV CRIU_VERSION v3.12
4949
RUN mkdir -p /usr/src/criu \
50-
&& curl -sSL https://github.com/checkpoint-restore/criu/archive/${CRIU_VERSION}.tar.gz | tar -v -C /usr/src/criu/ -xz --strip-components=1 \
50+
&& curl -fsSL https://github.com/checkpoint-restore/criu/archive/${CRIU_VERSION}.tar.gz | tar -C /usr/src/criu/ -xz --strip-components=1 \
5151
&& cd /usr/src/criu \
5252
&& make install-criu \
5353
&& rm -rf /usr/src/criu
@@ -63,4 +63,4 @@ ENTRYPOINT ["/tmpmount"]
6363
ADD . /go/src/github.com/opencontainers/runc
6464

6565
RUN . tests/integration/multi-arch.bash \
66-
&& curl -o- -sSL `get_busybox` | tar xfJC - ${ROOTFS}
66+
&& curl -fsSL `get_busybox` | tar xfJC - ${ROOTFS}

0 commit comments

Comments
 (0)