everyone likes docker

This commit is contained in:
NotAShelf 2022-01-25 16:21:30 +03:00
commit 73488b70e9
No known key found for this signature in database
GPG key ID: 2E4615E792DA9BAA
3 changed files with 38 additions and 0 deletions

10
Dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM node:17
# Set working directory
WORKDIR /opt/catApi
# and copy files into that directory
COPY . ./
RUN npm install -g npm@8 && npm install --save-dev
CMD npm start