This commit is contained in:
2025-12-09 17:02:27 +09:00
parent 26f8e1dab2
commit 83127da569
275 changed files with 139682 additions and 1 deletions

8
backend/Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM node:24-alpine
WORKDIR /app
RUN apk add --no-cache curl
COPY package*.json .
RUN npm install
COPY . .
CMD ["npm", "run", "start:dev"]
EXPOSE 4000