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

14 lines
219 B
Docker
Raw Normal View History

2022-04-18 20:45:56 +01:00
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"]