Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ jobs:
# rootlesskit-docker-proxy is no longer used since Docker v28.
#
# The design of netns handling was changed in Docker v29.5.
docker_version: [27.5.1, 29.4.3, 29.5.2]
docker_version: [27.5.1, 29.4.3, 29.8.0]
steps:
- name: "Set up AppArmor"
run: |
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
ARG GO_VERSION=1.26
ARG UBUNTU_VERSION=24.04
ARG SHADOW_VERSION=4.17.4
ARG SLIRP4NETNS_VERSION=v1.3.4
ARG SHADOW_VERSION=4.20.2
ARG SLIRP4NETNS_VERSION=v1.3.5
ARG VPNKIT_VERSION=0.6.0
ARG PASST_VERSION=2026_07_28.f8df3f1
ARG DOCKER_VERSION=29.5.2
ARG DOCKER_VERSION=29.8.0
ARG DOCKER_CHANNEL=stable

FROM golang:${GO_VERSION}-alpine AS build
Expand Down Expand Up @@ -44,7 +44,7 @@ RUN git clone https://github.com/shadow-maint/shadow.git /shadow
WORKDIR /shadow
ARG SHADOW_VERSION
RUN git pull && git checkout $SHADOW_VERSION
RUN ./autogen.sh --disable-nls --disable-man --without-audit --without-selinux --without-acl --without-attr --without-tcb --without-nscd && \
RUN ./autogen.sh --disable-nls --disable-man --without-audit --without-selinux --without-acl --without-attr --without-tcb && \
make && \
cp src/newuidmap src/newgidmap /usr/bin

Expand Down