production fixes

This commit is contained in:
blaisadmin
2026-04-14 00:04:43 -04:00
parent 27bc463258
commit e0ab66d21a
8 changed files with 157 additions and 9 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM node:22-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install --include=dev
COPY tsconfig.json ./
COPY src ./src
EXPOSE 5000
CMD ["npm", "run", "dev"]