1
0
mirror of https://github.com/containous/traefik.git synced 2024-10-26 08:55:09 +03:00
traefik/Dockerfile

13 lines
219 B
Docker
Raw Permalink Normal View History

2024-01-17 13:12:05 +03:00
# syntax=docker/dockerfile:1.2
2024-05-23 17:24:04 +03:00
FROM alpine:3.20
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"]