diff --git a/Dockerfile b/Dockerfile index b3e7d60..1415f11 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,11 @@ FROM node:alpine as builder WORKDIR '/app' COPY package.json . -COPY .npmrc . +#COPY .npmrc . RUN npm install COPY . . RUN npm run build FROM nginx +EXPOSE 80 COPY --from=builder /app/build /usr/share/nginx/html \ No newline at end of file