Fixing logos

This commit is contained in:
Murat Özkorkmaz
2025-11-13 20:16:21 +01:00
parent e901aefbf5
commit 87dbd0ba44
2 changed files with 11 additions and 0 deletions

View File

@@ -37,6 +37,9 @@ COPY docker/nginx.conf /etc/nginx/nginx.conf
# Copy the static build output from the build stage to Nginx's default HTML serving directory
COPY --chown=nginx:nginx --from=builder /app/dist/*/browser /usr/share/nginx/html
# Copy logos from public folder to root for direct access (needed for i18n builds)
COPY --chown=nginx:nginx --from=builder /app/public/logo-*.png /usr/share/nginx/html/
# Expose port 8080 to allow HTTP traffic
# Note: The default NGINX container now listens on port 8080 instead of 80
EXPOSE 8080