File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ FROM mcr.microsoft.com/windows/nanoserver:ltsc2025
2+
3+ COPY --from=traefik:v3.6.7-windowsservercore-ltsc2025 /traefik.exe /
4+
5+ EXPOSE 80
6+ ENTRYPOINT [ "/traefik" ]
7+
8+ # Metadata
9+ LABEL org.opencontainers.image.vendor="Traefik Labs" \
10+ org.opencontainers.image.url="https://traefik.io" \
11+ org.opencontainers.image.source="https://github.com/traefik/traefik" \
12+ org.opencontainers.image.title="Traefik" \
13+ org.opencontainers.image.description="A modern reverse-proxy" \
14+ org.opencontainers.image.version="v3.6.7" \
15+ org.opencontainers.image.documentation="https://docs.traefik.io"
Original file line number Diff line number Diff line change 1+ FROM mcr.microsoft.com/windows/servercore:ltsc2025
2+ SHELL ["powershell" , "-Command" , "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';" ]
3+
4+ RUN Invoke-WebRequest \
5+ -Uri "https://github.com/traefik/traefik/releases/download/v3.6.7/traefik_v3.6.7_windows_amd64.zip" \
6+ -OutFile "/traefik.zip" ; \
7+ Expand-Archive -Path "/traefik.zip" -DestinationPath "/" -Force; \
8+ Remove-Item "/traefik.zip" -Force
9+
10+ EXPOSE 80
11+ ENTRYPOINT [ "/traefik" ]
12+
13+ # Metadata
14+ LABEL org.opencontainers.image.vendor="Traefik Labs" \
15+ org.opencontainers.image.url="https://traefik.io" \
16+ org.opencontainers.image.source="https://github.com/traefik/traefik" \
17+ org.opencontainers.image.title="Traefik" \
18+ org.opencontainers.image.description="A modern reverse-proxy" \
19+ org.opencontainers.image.version="v3.6.7" \
20+ org.opencontainers.image.documentation="https://docs.traefik.io"
You can’t perform that action at this time.
0 commit comments