This repository has been archived on 2024-02-03. You can view files and clone it, but cannot push or open issues or pull requests.
flow-packer/files/traefik/Dockerfile

13 lines
219 B
Docker

ARG TRAEFIK_VERSION
FROM traefik:${TRAEFIK_VERSION}
ADD traefik.yaml /flow/traefik/
ADD entrypoint.sh /
ADD dynamic_dashboard.yaml /tmp/
RUN chmod +x /entrypoint.sh
CMD ["--configfile=/flow/traefik/traefik.yaml"]