11 lines
130 B
Docker
11 lines
130 B
Docker
|
FROM node:14.17.3-buster
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
RUN npm install -g yarn
|
||
|
RUN yarn install
|
||
|
RUN yarn build
|
||
|
|
||
|
CMD ["yarn", "preview"]
|