Amend CORS

This commit is contained in:
2025-07-15 16:15:10 +02:00
parent edeffa7012
commit 9148bb3463
5 changed files with 55 additions and 18 deletions

View File

@@ -18,13 +18,13 @@ RUN mkdir -p /runtime-config && \
USER nginx
# Copy built assets
COPY --from=builder --chown=nginx:nginx /app/dist /usr/share/nginx/html
COPY --chown=nginx:nginx dist /usr/share/nginx/html
# Copy our custom nginx config
COPY nginx.conf /etc/nginx/nginx.conf
# Copy nginx config template
COPY --chown=nginx:nginx nginx.conf.template /etc/nginx/templates/
# Copy entrypoint script
COPY docker/entrypoint.sh /entrypoint.sh
COPY --chown=nginx:nginx docker/entrypoint.sh /entrypoint.sh
# Make entrypoint executable
USER root