traefik/Dockerfile
Jenthe Noordsij 3e0dc4928e
Some checks are pending
CodeQL / Analyze (push) Waiting to run
Build and Publish Documentation / Doc Process (push) Waiting to run
Build experimental image on branch / build-webui (push) Waiting to run
Build experimental image on branch / Build experimental image on branch (push) Waiting to run
Update Dockerfiles to Alpine 3.24
2026-06-16 09:16:07 +02:00

12 lines
219 B
Docker

# syntax=docker/dockerfile:1.2
FROM alpine:3.24
RUN apk add --no-cache --no-progress ca-certificates tzdata
ARG TARGETPLATFORM
COPY ./dist/$TARGETPLATFORM/traefik /
EXPOSE 80
VOLUME ["/tmp"]
ENTRYPOINT ["/traefik"]