Skip to content
Snippets Groups Projects
Commit 11aa0cee authored by Wo-ogie's avatar Wo-ogie
Browse files

[FEAT] 배포를 위한 dockerfile 및 dockerignore 파일 추가

parent 2f3f7132
No related branches found
No related tags found
No related merge requests found
node_modules
\ No newline at end of file
FROM node:20-alpine
WORKDIR /app
COPY package.json ./
RUN npm install
COPY . .
EXPOSE 80
CMD ["npm", "start"]
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment