mirror of
https://github.com/containous/traefik.git
synced 2024-12-23 17:34:13 +03:00
14 lines
252 B
Docker
14 lines
252 B
Docker
# syntax=docker/dockerfile:1.2
|
|
FROM alpine:3.19
|
|
|
|
RUN apk --no-cache --no-progress add ca-certificates tzdata \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
ARG TARGETPLATFORM
|
|
COPY ./dist/$TARGETPLATFORM/traefik /
|
|
|
|
EXPOSE 80
|
|
VOLUME ["/tmp"]
|
|
|
|
ENTRYPOINT ["/traefik"]
|