This commit is contained in:
Dongho Kim
2026-06-22 02:33:30 +02:00
commit c12f0945a4
5 changed files with 114 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["npm", "start"]