right-tree/frontend/Dockerfile

12 lines
133 B
Text
Raw Normal View History

2021-11-10 15:27:16 +13:00
FROM node:16-alpine3.11 as builder
WORKDIR /app
COPY ./ /app
RUN npm install
RUN npm run-script build
RUN npm install -g serve