This commit is contained in:
Florian Forster
2025-08-05 13:54:23 -07:00
parent c33a79459b
commit 3e437575c2
13 changed files with 267 additions and 36 deletions

11
apps/console/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM nginx:1.29.0
RUN touch /var/run/nginx.pid && \
chown -R nginx:nginx /var/cache/nginx /var/run/nginx.pid
USER nginx
COPY --chown=nginx:nginx nginx.conf /etc/nginx/nginx.conf
# TODO Needs work to be configured for the console app
COPY --chown=nginx:nginx dist/console /usr/share/nginx/html
EXPOSE 3001
ENTRYPOINT ["nginx", "-c", "/etc/nginx/nginx.conf"]
CMD ["-g", "daemon off;"]