This commit is contained in:
Traefiker
2025-09-26 09:31:02 +00:00
parent f958561830
commit d670ca0784
5 changed files with 11 additions and 11 deletions
+2 -2
View File
@@ -11,7 +11,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/v3.5.2/traefik_v3.5.2_linux_$arch.tar.gz"; \
wget --quiet -O /tmp/traefik.tar.gz "https://github.com/traefik/traefik/releases/download/v3.5.3/traefik_v3.5.3_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
@@ -26,5 +26,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="v3.5.2" \
org.opencontainers.image.version="v3.5.3" \
org.opencontainers.image.documentation="https://docs.traefik.io"
+4 -4
View File
@@ -1,7 +1,7 @@
FROM scratch
COPY --from=traefik:v3.5.2-alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=traefik:v3.5.2-alpine /usr/share/zoneinfo /usr/share/
COPY --from=traefik:v3.5.2-alpine /usr/local/bin/traefik /
COPY --from=traefik:v3.5.3-alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=traefik:v3.5.3-alpine /usr/share/zoneinfo /usr/share/
COPY --from=traefik:v3.5.3-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="v3.5.2" \
org.opencontainers.image.version="v3.5.3" \
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:v3.5.2-windowsservercore-ltsc2022 /traefik.exe /
COPY --from=traefik:v3.5.3-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="v3.5.2" \
org.opencontainers.image.version="v3.5.3" \
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/v3.5.2/traefik_v3.5.2_windows_amd64.zip" \
-Uri "https://github.com/traefik/traefik/releases/download/v3.5.3/traefik_v3.5.3_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="v3.5.2" \
org.opencontainers.image.version="v3.5.3" \
org.opencontainers.image.documentation="https://docs.traefik.io"
+1 -1
View File
@@ -1 +1 @@
v3.5.2
v3.5.3