Added: tests, signin api, not working docker

This commit is contained in:
2024-05-01 23:24:03 +02:00
parent dc1b955a8a
commit bd8a5d607f
14 changed files with 553 additions and 83 deletions

23
api/Dockerfile Normal file
View File

@ -0,0 +1,23 @@
FROM node:18-alpine
WORKDIR /nork
COPY ../../nork .
RUN npm install
RUN npm run build
RUN npm link
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["npm", "start"]