10 lines
92 B
Docker
10 lines
92 B
Docker
FROM node:19-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
RUN yarn install
|
|
RUN yarn build
|
|
|
|
CMD yarn start
|