everything dockerized

This commit is contained in:
j-weissen 2022-12-06 09:45:31 +01:00
parent f0b379a379
commit 529da45219
6 changed files with 62 additions and 14 deletions

View file

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