Skip to content

Commit

Permalink
Update Dockerfilex86
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasky authored Jun 25, 2022
1 parent f3dfdf2 commit 6700dd8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfilex86
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# runc
FROM i386/alpine AS runc
ARG RUNC_VERSION=v1.1.1
ARG RUNC_VERSION=v1.1.3
RUN set -eux; \
apk add --no-cache --virtual .build-deps gcc musl-dev libseccomp-dev libseccomp-static make git bash go; \
git clone --branch ${RUNC_VERSION} https://github.com/opencontainers/runc src/github.com/opencontainers/runc; \
Expand Down Expand Up @@ -42,7 +42,7 @@ RUN set -ex; \
# conmon (without systemd support)
FROM podmanbuildbase AS conmon
# conmon 2.0.29 cannot be built currently since alpine does not provide nix package yet
ARG CONMON_VERSION=v2.1.0
ARG CONMON_VERSION=v2.1.2
RUN git clone --branch ${CONMON_VERSION} https://github.com/containers/conmon.git /conmon
WORKDIR /conmon
RUN set -ex; \
Expand Down Expand Up @@ -106,7 +106,7 @@ RUN set -ex; \
touch /dev/fuse; \
ninja install; \
fusermount3 -V
ARG FUSEOVERLAYFS_VERSION=v1.8.2
ARG FUSEOVERLAYFS_VERSION=v1.9
RUN git clone --branch=$FUSEOVERLAYFS_VERSION https://github.com/containers/fuse-overlayfs /fuse-overlayfs
WORKDIR /fuse-overlayfs
RUN set -ex; \
Expand Down

0 comments on commit 6700dd8

Please sign in to comment.