first commit

This commit is contained in:
shkim
2026-05-10 20:08:22 +09:00
commit 94ff09dc98
8 changed files with 415 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM node:20-alpine
WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm install --omit=dev
COPY src ./src
ENV NODE_ENV=production
ENV PORT=8080
EXPOSE 8080
CMD ["npm", "start"]