feat: add dynamic dialog max width to ModalDialog component
All checks were successful
Chore App Build, Test, and Push Docker Images / build-and-push (push) Successful in 2m45s

This commit is contained in:
2026-05-01 18:49:48 -04:00
parent a68a86a6a6
commit e77254eabf
8 changed files with 86 additions and 31 deletions

View File

@@ -10,17 +10,15 @@ RUN npm run build
FROM nginx:alpine
COPY --from=build /app/dist /usr/share/nginx/html
COPY nginx.conf.template /etc/nginx/nginx.conf.template
# Copy SSL certificate and key
#COPY 192.168.1.102+1.pem /etc/nginx/ssl/server.crt
#COPY 192.168.1.102+1-key.pem /etc/nginx/ssl/server.key
COPY nginx.http.conf.template /etc/nginx/nginx.http.conf.template
COPY docker/start-nginx.sh /docker/start-nginx.sh
RUN chmod +x /docker/start-nginx.sh
EXPOSE 80
EXPOSE 443
# Copy nginx.conf
COPY nginx.conf.template /etc/nginx/nginx.conf.template
# Set default BACKEND_HOST (can be overridden at runtime)
# Set default runtime values (can be overridden at runtime)
ENV BACKEND_HOST=chore-app-backend
ENV FRONTEND_SSL_ENABLED=true
# Use sed to replace $BACKEND_HOST with the env value, then start Nginx
CMD ["/bin/sh", "-c", "sed 's/\\$BACKEND_HOST/'\"$BACKEND_HOST\"'/g' /etc/nginx/nginx.conf.template > /etc/nginx/nginx.conf && nginx -g 'daemon off;'"]
CMD ["/docker/start-nginx.sh"]