Skip to content

Commit

Permalink
feat: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
blueswooz committed Feb 23, 2024
1 parent e19a3c9 commit 8b1dfbf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# runc
FROM golang:1.20-alpine3.16 AS runc
ARG RUNC_VERSION=v1.1.7
ARG RUNC_VERSION=v1.1.12
RUN set -eux; \
apk add --no-cache --virtual .build-deps gcc musl-dev libseccomp-dev libseccomp-static make git bash; \
git clone -c 'advice.detachedHead=false' --depth=1 --branch ${RUNC_VERSION} https://github.com/opencontainers/runc src/github.com/opencontainers/runc; \
Expand Down Expand Up @@ -82,7 +82,7 @@ RUN set -ex; \
ninja -C build install
# Build slirp4netns
WORKDIR /
ARG SLIRP4NETNS_VERSION=v1.2.2
ARG SLIRP4NETNS_VERSION=v1.2.3
RUN git clone --branch $SLIRP4NETNS_VERSION https://github.com/rootless-containers/slirp4netns.git
WORKDIR /slirp4netns
RUN set -ex; \
Expand Down Expand Up @@ -153,7 +153,7 @@ COPY --from=runc /usr/local/bin/runc /usr/local/bin/runc

# Download crun
FROM gpg AS crun
ARG CRUN_VERSION=1.12
ARG CRUN_VERSION=1.14.3
RUN set -ex; \
wget -O /usr/local/bin/crun https://github.com/containers/crun/releases/download/$CRUN_VERSION/crun-${CRUN_VERSION}-linux-amd64-disable-systemd; \
chmod +x /usr/local/bin/crun; \
Expand Down

0 comments on commit 8b1dfbf

Please sign in to comment.