test
Build and Deploy / build (push) Successful in 33s
Build and Deploy / deploy (push) Successful in 21s

This commit is contained in:
2026-05-29 19:54:40 +02:00
parent 76c2258cfc
commit 6cc15b1a98
+1 -1
View File
@@ -20,7 +20,7 @@ FROM nginx:stable-alpine as production-stage
# Remove default nginx website
RUN rm -rf /usr/share/nginx/html/*
# Copy built files
COPY --from=build-stage /app/dist /usr/share/nginx/html
COPY --from=build /app/dist /usr/share/nginx/html
# Copy custom nginx configuration
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80