Skip to content

Commit

Permalink
Fix missing python dependency in docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincburns authored and mrvautin committed Sep 1, 2018
1 parent 354f4e9 commit d889bfb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Expand Up @@ -2,8 +2,11 @@ FROM mhart/alpine-node:8

ENV NODE_VERSION 8.9.4

RUN apk add --no-cache make gcc g++ python bash

WORKDIR /var/expressCart

COPY lib/ /var/expressCart/lib/
COPY bin/ /var/expressCart/bin/
COPY config/ /var/expressCart/config/
COPY public/ /var/expressCart/public/
Expand All @@ -19,4 +22,4 @@ RUN npm install
VOLUME /var/expressCart/data

EXPOSE 1111
ENTRYPOINT ["npm", "start"]
ENTRYPOINT ["npm", "start"]

0 comments on commit d889bfb

Please sign in to comment.