added endpoints

This commit is contained in:
Lukian 2024-12-18 09:39:20 +01:00
parent 8a61aaa68f
commit 7d0406ef6e
6 changed files with 314 additions and 2 deletions

6
Dockerfile Normal file
View file

@ -0,0 +1,6 @@
FROM node:alpine
WORKDIR /app
COPY . .
RUN npm i
CMD ["npm", "run", "start"]