keysmash/Dockerfile
2022-07-18 12:07:41 -04:00

14 lines
226 B
Docker

FROM node:12 as build
WORKDIR /app
COPY keysmash/ ./
RUN npm install
RUN npm run build
FROM nginx:1.20.1-alpine
COPY nginx.conf /etc/nginx/nginx.conf
COPY --from=build /app/dist/ /www/
COPY --from=build /app/static/ /www/