2017-05-30 20:52:10 +03:00
|
|
|
# todo change to 7
|
|
|
|
FROM quay.io/yldio/alpine-node-containerpilot:latest
|
|
|
|
|
|
|
|
RUN npm install lerna@^2.0.0-rc.5 \
|
|
|
|
&& ./node_modules/.bin/lerna clean --yes --scope joyent-cp-gql-mock-server --include-filtered-dependencies \
|
|
|
|
&& ./node_modules/.bin/lerna bootstrap --scope joyent-cp-gql-mock-server --include-filtered-dependencies
|
|
|
|
|
|
|
|
WORKDIR /home/node/app/packages/cp-gql-mock-server
|
|
|
|
COPY packages/cp-gql-mock-server/etc/containerpilot.json /etc/
|
|
|
|
|
2017-06-01 19:20:25 +03:00
|
|
|
ARG CIRCLE_BRANCH
|
|
|
|
|
2017-05-30 20:52:10 +03:00
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["/bin/containerpilot", "yarn", "run", "start"]
|