1
0
mirror of https://github.com/containous/traefik.git synced 2025-01-18 06:03:50 +03:00
traefik/Dockerfile

13 lines
219 B
Docker
Raw Normal View History

2024-01-17 11:12:05 +01:00
# syntax=docker/dockerfile:1.2
2024-05-23 16:24:04 +02:00
FROM alpine:3.20
2024-01-17 11:12:05 +01:00
2024-05-23 16:24:04 +02:00
RUN apk add --no-cache --no-progress ca-certificates tzdata
2024-01-17 11:12:05 +01:00
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"]