Skip to content

Commit

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

0 comments on commit cce1a94

Please sign in to comment.