Skip to content

Commit

Permalink
v2.11.14
Browse files Browse the repository at this point in the history
  • Loading branch information
traefiker committed Nov 20, 2024
1 parent 05f8054 commit cd86caf
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions v2.11/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/v2.11.13/traefik_v2.11.13_linux_$arch.tar.gz"; \
wget --quiet -O /tmp/traefik.tar.gz "https://github.com/traefik/traefik/releases/download/v2.11.14/traefik_v2.11.14_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
Expand All @@ -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="v2.11.13" \
org.opencontainers.image.version="v2.11.14" \
org.opencontainers.image.documentation="https://docs.traefik.io"
8 changes: 4 additions & 4 deletions v2.11/scratch/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM scratch
COPY --from=traefik:v2.11.13-alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=traefik:v2.11.13-alpine /usr/share/zoneinfo /usr/share/
COPY --from=traefik:v2.11.13-alpine /usr/local/bin/traefik /
COPY --from=traefik:v2.11.14-alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=traefik:v2.11.14-alpine /usr/share/zoneinfo /usr/share/
COPY --from=traefik:v2.11.14-alpine /usr/local/bin/traefik /

EXPOSE 80
VOLUME ["/tmp"]
Expand All @@ -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.13" \
org.opencontainers.image.version="v2.11.14" \
org.opencontainers.image.documentation="https://docs.traefik.io"
4 changes: 2 additions & 2 deletions v2.11/windows/1809/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM mcr.microsoft.com/windows/servercore:1809
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

RUN Invoke-WebRequest \
-Uri "https://github.com/traefik/traefik/releases/download/v2.11.13/traefik_v2.11.13_windows_amd64.zip" \
-Uri "https://github.com/traefik/traefik/releases/download/v2.11.14/traefik_v2.11.14_windows_amd64.zip" \
-OutFile "/traefik.zip"; \
Expand-Archive -Path "/traefik.zip" -DestinationPath "/" -Force; \
Remove-Item "/traefik.zip" -Force
Expand All @@ -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.13" \
org.opencontainers.image.version="v2.11.14" \
org.opencontainers.image.documentation="https://docs.traefik.io"
4 changes: 2 additions & 2 deletions v2.11/windows/nanoserver-ltsc2022/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM mcr.microsoft.com/windows/nanoserver:ltsc2022

COPY --from=traefik:v2.11.13-windowsservercore-ltsc2022 /traefik.exe /
COPY --from=traefik:v2.11.14-windowsservercore-ltsc2022 /traefik.exe /

EXPOSE 80
ENTRYPOINT [ "/traefik" ]
Expand All @@ -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.13" \
org.opencontainers.image.version="v2.11.14" \
org.opencontainers.image.documentation="https://docs.traefik.io"
4 changes: 2 additions & 2 deletions v2.11/windows/servercore-ltsc2022/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.13/traefik_v2.11.13_windows_amd64.zip" \
-Uri "https://github.com/traefik/traefik/releases/download/v2.11.14/traefik_v2.11.14_windows_amd64.zip" \
-OutFile "/traefik.zip"; \
Expand-Archive -Path "/traefik.zip" -DestinationPath "/" -Force; \
Remove-Item "/traefik.zip" -Force
Expand All @@ -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.13" \
org.opencontainers.image.version="v2.11.14" \
org.opencontainers.image.documentation="https://docs.traefik.io"
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v3.2.0
v2.11.14

0 comments on commit cd86caf

Please sign in to comment.