From 6cc15b1a985779565a880b05e8586d14fdd87432 Mon Sep 17 00:00:00 2001 From: JohannesBOT Date: Fri, 29 May 2026 19:54:40 +0200 Subject: [PATCH] test --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3471cd2..b3ea87d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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