fix: path
All checks were successful
Build and Push Docker Images / build-and-push-backend (push) Successful in 7s
Build and Push Docker Images / build-and-push-frontend (push) Successful in 14s

This commit is contained in:
2026-01-31 01:38:56 +01:00
parent 894a6f01c2
commit 7b90cac1d1

View File

@@ -26,7 +26,7 @@ COPY nginx.conf /etc/nginx/conf.d/default.conf
# Copy the built application from the builder stage to Nginx's web root directory # Copy the built application from the builder stage to Nginx's web root directory
# I am assuming the project name is 'dashboard'. If not, you may need to change the path 'dist/dashboard/browser'. # I am assuming the project name is 'dashboard'. If not, you may need to change the path 'dist/dashboard/browser'.
COPY --from=builder /app/dist/frontend /usr/share/nginx/html COPY --from=builder /app/dist/frontend/ /usr/share/nginx/html
# Expose port 80 for the web server # Expose port 80 for the web server
EXPOSE 80 EXPOSE 80