9 lines
No EOL
109 B
Docker
9 lines
No EOL
109 B
Docker
FROM node:16.19.0
|
|
RUN mkdir app
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN yarn install
|
|
RUN yarn build
|
|
|
|
|
|
CMD ["yarn", "start"] |