1
0
mirror of https://github.com/containous/traefik.git synced 2025-03-14 00:58:23 +03:00
traefik/Dockerfile

14 lines
252 B
Docker
Raw Permalink Normal View History

2024-01-17 11:12:05 +01:00
# 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 /
2015-12-03 17:15:01 +01:00
EXPOSE 80
VOLUME ["/tmp"]
2024-01-17 11:12:05 +01:00
ENTRYPOINT ["/traefik"]