This commit is contained in:
Traefiker
2026-04-29 10:14:02 +00:00
parent 0c9d3bf601
commit ca941add1a
7 changed files with 15 additions and 15 deletions
+2 -2
View File
@@ -12,7 +12,7 @@ RUN set -ex; \
ppc64le) arch='ppc64le' ;; \
*) echo >&2 "error: unsupported architecture: $apkArch"; exit 1 ;; \
esac; \
wget --quiet -O /tmp/traefik.tar.gz "https://github.com/traefik/traefik/releases/download/v2.11.43/traefik_v2.11.43_linux_$arch.tar.gz"; \
wget --quiet -O /tmp/traefik.tar.gz "https://github.com/traefik/traefik/releases/download/v2.11.44/traefik_v2.11.44_linux_$arch.tar.gz"; \
tar xzvf /tmp/traefik.tar.gz -C /usr/local/bin traefik; \
rm -f /tmp/traefik.tar.gz; \
chmod +x /usr/local/bin/traefik
@@ -27,5 +27,5 @@ LABEL org.opencontainers.image.vendor="Traefik Labs" \
org.opencontainers.image.source="https://github.com/traefik/traefik" \
org.opencontainers.image.title="Traefik" \
org.opencontainers.image.description="A modern reverse-proxy" \
org.opencontainers.image.version="v2.11.43" \
org.opencontainers.image.version="v2.11.44" \
org.opencontainers.image.documentation="https://docs.traefik.io"
+4 -4
View File
@@ -1,7 +1,7 @@
FROM scratch
COPY --from=traefik:v2.11.43-alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=traefik:v2.11.43-alpine /usr/share/zoneinfo /usr/share/
COPY --from=traefik:v2.11.43-alpine /usr/local/bin/traefik /
COPY --from=traefik:v2.11.44-alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=traefik:v2.11.44-alpine /usr/share/zoneinfo /usr/share/
COPY --from=traefik:v2.11.44-alpine /usr/local/bin/traefik /
EXPOSE 80
VOLUME ["/tmp"]
@@ -13,5 +13,5 @@ LABEL org.opencontainers.image.vendor="Traefik Labs" \
org.opencontainers.image.source="https://github.com/traefik/traefik" \
org.opencontainers.image.title="Traefik" \
org.opencontainers.image.description="A modern reverse-proxy" \
org.opencontainers.image.version="v2.11.43" \
org.opencontainers.image.version="v2.11.44" \
org.opencontainers.image.documentation="https://docs.traefik.io"
+2 -2
View File
@@ -1,6 +1,6 @@
FROM mcr.microsoft.com/windows/nanoserver:ltsc2022
COPY --from=traefik:v2.11.43-windowsservercore-ltsc2022 /traefik.exe /
COPY --from=traefik:v2.11.44-windowsservercore-ltsc2022 /traefik.exe /
EXPOSE 80
ENTRYPOINT [ "/traefik" ]
@@ -11,5 +11,5 @@ LABEL org.opencontainers.image.vendor="Traefik Labs" \
org.opencontainers.image.source="https://github.com/traefik/traefik" \
org.opencontainers.image.title="Traefik" \
org.opencontainers.image.description="A modern reverse-proxy" \
org.opencontainers.image.version="v2.11.43" \
org.opencontainers.image.version="v2.11.44" \
org.opencontainers.image.documentation="https://docs.traefik.io"
+2 -2
View File
@@ -1,6 +1,6 @@
FROM mcr.microsoft.com/windows/nanoserver:ltsc2025
COPY --from=traefik:v2.11.43-windowsservercore-ltsc2025 /traefik.exe /
COPY --from=traefik:v2.11.44-windowsservercore-ltsc2025 /traefik.exe /
EXPOSE 80
ENTRYPOINT [ "/traefik" ]
@@ -11,5 +11,5 @@ LABEL org.opencontainers.image.vendor="Traefik Labs" \
org.opencontainers.image.source="https://github.com/traefik/traefik" \
org.opencontainers.image.title="Traefik" \
org.opencontainers.image.description="A modern reverse-proxy" \
org.opencontainers.image.version="v2.11.43" \
org.opencontainers.image.version="v2.11.44" \
org.opencontainers.image.documentation="https://docs.traefik.io"
+2 -2
View File
@@ -2,7 +2,7 @@ FROM mcr.microsoft.com/windows/servercore:ltsc2022
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
RUN Invoke-WebRequest \
-Uri "https://github.com/traefik/traefik/releases/download/v2.11.43/traefik_v2.11.43_windows_amd64.zip" \
-Uri "https://github.com/traefik/traefik/releases/download/v2.11.44/traefik_v2.11.44_windows_amd64.zip" \
-OutFile "/traefik.zip"; \
Expand-Archive -Path "/traefik.zip" -DestinationPath "/" -Force; \
Remove-Item "/traefik.zip" -Force
@@ -16,5 +16,5 @@ LABEL org.opencontainers.image.vendor="Traefik Labs" \
org.opencontainers.image.source="https://github.com/traefik/traefik" \
org.opencontainers.image.title="Traefik" \
org.opencontainers.image.description="A modern reverse-proxy" \
org.opencontainers.image.version="v2.11.43" \
org.opencontainers.image.version="v2.11.44" \
org.opencontainers.image.documentation="https://docs.traefik.io"
+2 -2
View File
@@ -2,7 +2,7 @@ FROM mcr.microsoft.com/windows/servercore:ltsc2025
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
RUN Invoke-WebRequest \
-Uri "https://github.com/traefik/traefik/releases/download/v2.11.43/traefik_v2.11.43_windows_amd64.zip" \
-Uri "https://github.com/traefik/traefik/releases/download/v2.11.44/traefik_v2.11.44_windows_amd64.zip" \
-OutFile "/traefik.zip"; \
Expand-Archive -Path "/traefik.zip" -DestinationPath "/" -Force; \
Remove-Item "/traefik.zip" -Force
@@ -16,5 +16,5 @@ LABEL org.opencontainers.image.vendor="Traefik Labs" \
org.opencontainers.image.source="https://github.com/traefik/traefik" \
org.opencontainers.image.title="Traefik" \
org.opencontainers.image.description="A modern reverse-proxy" \
org.opencontainers.image.version="v2.11.43" \
org.opencontainers.image.version="v2.11.44" \
org.opencontainers.image.documentation="https://docs.traefik.io"
+1 -1
View File
@@ -1 +1 @@
v3.7.0-rc.2
v2.11.44