Initial commit

This commit is contained in:
2020-01-26 17:41:23 -08:00
commit fdb592deb3
5 changed files with 114 additions and 0 deletions

18
Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
# Based on node
FROM node:13
# Create app directory
WORKDIR /usr/src/app
# Install app dependencies
COPY package*.json ./
RUN npm install
# RUN NPM ci --only=production
# Bundle app source
COPY . .
EXPOSE 3000
CMD ["node", "ask.js"]