mirror of
https://github.com/demostf/proxy
synced 2026-06-03 20:14:07 +02:00
14 lines
290 B
Docker
14 lines
290 B
Docker
FROM nginx:1-alpine
|
|
|
|
RUN apk add --no-cache moreutils bash
|
|
|
|
COPY entrypoint.sh /docker-entrypoint.d/
|
|
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
|