diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..3429b78 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM node:18-alpine as build +WORKDIR /app +COPY package.json package-lock.json ./ +RUN npm ci +COPY . ./ +RUN npm run build + +FROM nginx +COPY --from=build /app/dist /usr/share/nginx/html \ No newline at end of file