mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 04:57:33 +00:00
WIP prepare skeleton for Nx migration
This commit is contained in:
9
docs/Dockerfile
Normal file
9
docs/Dockerfile
Normal file
@@ -0,0 +1,9 @@
|
||||
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
|
||||
COPY --chown=nginx:nginx build /usr/share/nginx/html/docs
|
||||
EXPOSE 3003
|
||||
ENTRYPOINT ["nginx", "-c", "/etc/nginx/nginx.conf"]
|
||||
CMD ["-g", "daemon off;"]
|
Reference in New Issue
Block a user