initial commit

This commit is contained in:
2024-06-07 22:37:18 -04:00
commit 207a38f1e3
41 changed files with 59014 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM node
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
ENV PORT=3000
EXPOSE 3000
CMD ["node", "."]