diff --git a/Dockerfile b/Dockerfile index 4dcec61..f6cd1d5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:9.8-slim AS build +FROM node:23-slim AS build WORKDIR /app @@ -13,7 +13,7 @@ RUN ls -la /app FROM nginx:alpine -COPY --from=build /app/build /usr/share/nginx/html +COPY --from=build /app/dist /usr/share/nginx/html EXPOSE 80