5 lines
74 B
Docker
5 lines
74 B
Docker
FROM node:15.11.0-alpine3.13
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN yarn
|
|
RUN yarn build |