Merge pull request #5 from desplmfao/patch-2

Create Dockerfile
This commit is contained in:
David Reed 2022-10-10 19:05:23 -04:00 committed by GitHub
commit 4e926ad875
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

9
Dockerfile Normal file
View file

@ -0,0 +1,9 @@
FROM node:current-slim
WORKDIR /app
COPY ./package.json ./package-lock.json ./src/ ./
RUN npm install --omit=dev
ENTRYPOINT npm start