database + tables creation

This commit is contained in:
gprunet
2026-01-07 17:39:46 +01:00
parent 067186db5f
commit 39e37b6078
5 changed files with 107 additions and 22 deletions
-15
View File
@@ -1,15 +0,0 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install --production
COPY . .
EXPOSE 3001
ENV NODE_ENV=development
CMD ["node", "server.js"]