1
0
Fork 0
mirror of https://github.com/demostf/proxy synced 2026-06-03 12:04:07 +02:00
proxy/Dockerfile
2024-01-14 02:15:29 +01:00

16 lines
323 B
Docker

FROM jonasal/nginx-certbot:latest-alpine
RUN apk add --no-cache moreutils
COPY entrypoint.sh /
COPY nginx.conf /etc/nginx/nginx.conf
COPY 413.html /var/www
COPY sites/* /etc/nginx/conf.d/
ENV API_FASTCGI=api:9000
ENV FRONTEND=frontend
ENV SYNC=sync
ENV MAPS=maps
ENV METRICS=metrics
CMD ["/bin/bash", "/entrypoint.sh"]