services/templates/traefik/Dockerfile.gotmpl
Dan Anglin 032c080b99
fix(traefik): update Traefik deployment
- Upgrade Traefik to version 2.10.4.
- Remove the unused dashboard router and disable the dashboard.
- Remove the now unsupported pilot token.
2023-08-01 01:15:48 +01:00

9 lines
168 B
Docker

FROM traefik:{{ .Traefik.Version }}
ADD traefik.yaml /flow/traefik/
ADD entrypoint.sh /
RUN chmod +x /entrypoint.sh
CMD ["--configfile=/flow/traefik/traefik.yaml"]