Initial Commit

This commit is contained in:
abiteman
2025-01-22 13:10:59 -06:00
parent 5ba5d87118
commit f2927d97db
8 changed files with 1357 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN mkdir -p uploads
EXPOSE 3000
CMD ["node", "server.js"]