This repository has been archived on 2026-01-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
sdi/ChatGPT-CodeReview/Dockerfile

8 lines
197 B
Docker
Raw Normal View History

2025-04-17 12:00:31 +09:00
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" ]