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

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"]