Adding docker support

Signed-off-by: stephen <stephen@vanderwarker.family>
This commit is contained in:
2022-02-27 11:13:15 -05:00
parent ce90a74e68
commit e6ade36780
3 changed files with 15 additions and 1 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM node:16-alpine
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
CMD ["node", "index.js"]