8 lines
197 B
Docker
8 lines
197 B
Docker
|
|
FROM node:18-slim
|
||
|
|
WORKDIR /usr/src/app
|
||
|
|
COPY package.json yarn.lock ./
|
||
|
|
RUN yarn install --production --frozen-lockfile && yarn cache clean
|
||
|
|
ENV NODE_ENV="production"
|
||
|
|
COPY . .
|
||
|
|
CMD [ "yarn", "start" ]
|