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

13 lines
219 B
Docker
Raw Normal View History

2024-01-17 13:12:05 +03:00
# syntax=docker/dockerfile:1.2
2024-12-12 16:44:05 +03:00
FROM alpine:3.21
2024-01-17 13:12:05 +03:00
2024-05-23 17:24:04 +03:00
RUN apk add --no-cache --no-progress ca-certificates tzdata
2024-01-17 13:12:05 +03:00
ARG TARGETPLATFORM
COPY ./dist/$TARGETPLATFORM/traefik /
2015-12-03 19:15:01 +03:00
EXPOSE 80
VOLUME ["/tmp"]
2024-01-17 13:12:05 +03:00
ENTRYPOINT ["/traefik"]