Create Dockerfile

This commit is contained in:
Steven Ettinger 2022-01-27 20:08:59 -03:00 committed by GitHub
parent eef8d43c91
commit ac81bb510a
Signed by untrusted user: github
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM node:14
WORKDIR /honeycomb
COPY package.json .
RUN npm install
COPY . .
CMD ["node", "index.js"]