Initial commit

This commit is contained in:
2020-04-04 15:50:15 -07:00
commit 7cc45b1385
11 changed files with 995 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
# Based on node
FROM node:13-alpine
RUN apk add git
# Create app directory
WORKDIR /usr/src/app
# Install app dependencies
RUN git clone https://git.heshapps.com/asolkar/mma-gpacts-app.git .
RUN npm install
RUN npm ci --only=production
EXPOSE 3000
CMD ["node", "index.js"]