12 lines
133 B
Text
12 lines
133 B
Text
|
FROM node:16-alpine3.11 as builder
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY ./ /app
|
||
|
|
||
|
RUN npm install
|
||
|
|
||
|
RUN npm run-script build
|
||
|
|
||
|
RUN npm install -g serve
|