This commit is contained in:
2025-04-17 10:20:46 -04:00
commit c6f10f9a32
9 changed files with 1402 additions and 0 deletions

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM node:alpine
ARG PORT
ENV PORT=$PORT
COPY . .
RUN npm install && npm run build
CMD ["node", "dist/main.js"]
EXPOSE $PORT