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