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
+17
View File
@@ -0,0 +1,17 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
RUN npm install dotenv
RUN npm install pg
COPY . .
EXPOSE 3001
ENV NODE_ENV=development
CMD ["node", "index.js"]