game builds proxy

This commit is contained in:
ct
2026-03-15 19:26:37 -04:00
commit 5e33f4c530
5 changed files with 165 additions and 0 deletions

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM nginx:alpine
COPY nginx.conf.template /etc/nginx/nginx.conf.template
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh && mkdir -p /var/cache/nginx/builds
ENTRYPOINT ["/entrypoint.sh"]