Fix favicon in production deployments (#346)

Co-authored-by: antanst <>
This commit is contained in:
Antonis 2025-09-19 16:08:08 +03:00 committed by GitHub
parent c237d71ccb
commit a5fd9d49d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -80,6 +80,7 @@ RUN chmod +x /app/scripts/docker-entrypoint.sh
# Copy frontend
RUN rm -rf /app/backend/dist
COPY --from=builder --chown=app:app /app/dist ./backend/dist
COPY --from=builder --chown=app:app /app/public/favicon* ./backend/dist/
COPY --from=builder --chown=app:app /app/public/locales ./backend/dist/locales
COPY --from=builder --chown=app:app /app/node_modules ./node_modules
COPY --from=builder --chown=app:app /app/package.json /app/