improved api

This commit is contained in:
j-weissen 2022-12-05 19:30:27 +01:00
parent 3be0cc8380
commit f3f0945ccc
6 changed files with 174 additions and 7 deletions

View file

@ -0,0 +1,9 @@
FROM node:18
COPY ./* /app/
WORKDIR /app
RUN npm install
ENTRYPOINT ["npm", "run"]
CMD ["prod"]