mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 08:47:32 +00:00
preview
This commit is contained in:
11
apps/console/Dockerfile
Normal file
11
apps/console/Dockerfile
Normal 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;"]
|
Reference in New Issue
Block a user