simon987.net/Dockerfile
2021-01-31 15:07:01 -05:00

11 lines
159 B
Docker

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