first commit

This commit is contained in:
unknown
2026-06-03 16:59:27 -04:00
commit b35cc2f54b
36 changed files with 5634 additions and 0 deletions

19
backend/Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
FROM node:20-alpine
RUN apk add --no-cache python3 make g++
WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm install --omit=dev
COPY src ./src
RUN mkdir -p /app/data
ENV PORT=4000
ENV DB_PATH=/app/data/donmarco.db
EXPOSE 4000
CMD ["node", "src/index.js"]