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 @@ -191,7 +191,7 @@ jobs:
matrix:
# The design of the proxy was changed in Docker v28.
# rootlesskit-docker-proxy is no longer used since Docker v28.
docker_version: [27.5.1, 28.0.1]
docker_version: [27.5.1, 28.1.1]
steps:
- name: "Set up AppArmor"
run: |
Expand Down
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
ARG GO_VERSION=1.24
ARG UBUNTU_VERSION=24.04
ARG SHADOW_VERSION=4.16.0
ARG SHADOW_VERSION=4.17.4
ARG SLIRP4NETNS_VERSION=v1.3.2
ARG VPNKIT_VERSION=0.5.0
ARG PASST_VERSION=2025_02_17.a1e48a0
ARG DOCKER_VERSION=28.0.1
ARG VPNKIT_VERSION=0.6.0
ARG PASST_VERSION=2025_04_15.2340bbf
ARG DOCKER_VERSION=28.1.1
ARG DOCKER_CHANNEL=stable

FROM golang:${GO_VERSION}-alpine AS build
Expand Down Expand Up @@ -44,7 +44,7 @@ RUN ./autogen.sh --disable-nls --disable-man --without-audit --without-selinux -
make && \
cp src/newuidmap src/newgidmap /usr/bin

FROM djs55/vpnkit:${VPNKIT_VERSION} AS vpnkit
FROM moby/vpnkit-bin:${VPNKIT_VERSION} AS vpnkit

FROM ubuntu:${UBUNTU_VERSION} AS passt
ENV DEBIAN_FRONTEND=noninteractive
Expand Down