diff --git a/react-frontend/Dockerfile b/react-frontend/Dockerfile index e66a862..d305180 100644 --- a/react-frontend/Dockerfile +++ b/react-frontend/Dockerfile @@ -13,7 +13,7 @@ RUN npm run build # Production stage FROM nginx:alpine -COPY --from=build /app/build /usr/share/nginx/html +COPY --from=build /app/dist /usr/share/nginx/html COPY docker-entrypoint.sh /docker-entrypoint.sh EXPOSE 80