mirror of
https://github.com/containous/traefik.git
synced 2024-12-22 13:34:03 +03:00
11 lines
321 B
Docker
11 lines
321 B
Docker
FROM alpine:3.14
|
|
# Feel free to add below any helpful dependency for debugging.
|
|
# iproute2 is for ss.
|
|
RUN apk --no-cache --no-progress add bash curl ca-certificates tzdata lsof iproute2 \
|
|
&& update-ca-certificates \
|
|
&& rm -rf /var/cache/apk/*
|
|
COPY dist/traefik /
|
|
EXPOSE 80
|
|
VOLUME ["/tmp"]
|
|
ENTRYPOINT ["/traefik"]
|