Skip to content

Commit

Permalink
Merge pull request #49 from gnehs/dev
Browse files Browse the repository at this point in the history
new dockerfile
  • Loading branch information
gnehs authored Sep 1, 2018
2 parents ac1f1db + 2305b41 commit 23b00da
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
FROM node:10-alpine

#
RUN mkdir /app
WORKDIR /app
COPY . /app

RUN apk add --no-cache make gcc g++ python git sed
RUN git clone https://github.com/gnehs/PokaPlayer.git .
#
RUN apk add --no-cache make gcc g++ python git
RUN npm install --production

#
ENV NODE_ENV=production
EXPOSE 3000
CMD ["npm", "start"]
Expand Down

0 comments on commit 23b00da

Please sign in to comment.