Step 2 migration: add PostgreSQL schema and read endpoints

This commit is contained in:
Ponte
2026-02-11 14:57:36 +01:00
parent aae5471862
commit 89d9275e1a
6 changed files with 203 additions and 11 deletions

View File

@@ -1,6 +1,8 @@
FROM node:20-alpine
WORKDIR /app
COPY api/package.json ./package.json
RUN npm install --omit=dev
COPY api/server.js ./server.js
EXPOSE 3001