right-tree/frontend/Dockerfile
2021-11-10 15:27:16 +13:00

11 lines
133 B
Docker

FROM node:16-alpine3.11 as builder
WORKDIR /app
COPY ./ /app
RUN npm install
RUN npm run-script build
RUN npm install -g serve