mirror of
https://github.com/traefik/traefik.git
synced 2026-07-06 08:23:54 -04:00
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
12 lines
219 B
Docker
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"]
|