This commit is contained in:
2021-01-31 15:07:01 -05:00
parent 634d018b65
commit f49ddeec8d
5 changed files with 403 additions and 268 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM node:14 as build
WORKDIR /app
COPY simon987/ ./
RUN npm install
RUN npm run build
FROM nginx:alpine
COPY --from=build /app/dist/ /usr/share/nginx/html