This commit is contained in:
2026-03-23 19:14:25 -05:00
parent 92676e652a
commit 58ac75e51b
11 changed files with 202 additions and 20 deletions

View File

@@ -0,0 +1,11 @@
FROM node:22-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --omit=dev
COPY . .
EXPOSE 5000
CMD ["node", "index.js"]