Start to read the api

This commit is contained in:
Clément Le Bihan
2024-05-05 16:33:17 +02:00
parent 625c6a67e2
commit ac7e9f1a22
7 changed files with 219 additions and 16 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM node:22-alpine
WORKDIR /app
COPY package.json .
COPY package-lock.json .
RUN npm install
COPY . .
CMD ["npm", "run", "dev", "--", "--host"]