Skip to content

Commit

Permalink
fix ipython-controller build fail (laradock#2027)
Browse files Browse the repository at this point in the history
  • Loading branch information
bestlong authored Mar 1, 2019
1 parent d964e28 commit d404555
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ env:
- PHP_VERSION=NA BUILD_SERVICE="adminer phpmyadmin pgadmin"
- PHP_VERSION=NA BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq elasticsearch certbot mailhog maildev selenium jenkins proxy proxy2 haproxy"
- PHP_VERSION=NA BUILD_SERVICE="kibana grafana laravel-echo-server"
- PHP_VERSION=NA BUILD_SERVICE="ipython-controller"
# - PHP_VERSION=NA BUILD_SERVICE="aws"

# Installing a newer Docker version
Expand Down
4 changes: 2 additions & 2 deletions ipython/Dockerfile.controller
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ LABEL maintainer="ahkui <[email protected]>"

USER root

RUN apk add --no-cache build-base
RUN apk add --no-cache build-base zeromq-dev

RUN python -m pip --quiet --no-cache-dir install \
ipyparallel
Expand All @@ -14,4 +14,4 @@ RUN ipython profile create --parallel --profile=default
COPY ipcontroller-client.json /root/.ipython/profile_default/security/ipcontroller-client.json
COPY ipcontroller-engine.json /root/.ipython/profile_default/security/ipcontroller-engine.json

CMD ["sh","-c","ipcontroller --ip=* --reuse"]
CMD ["sh","-c","ipcontroller --ip=* --reuse"]
2 changes: 1 addition & 1 deletion ipython/Dockerfile.engine
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ LABEL maintainer="ahkui <[email protected]>"

USER root

RUN apk add --no-cache build-base
RUN apk add --no-cache build-base zeromq-dev

RUN python -m pip --quiet --no-cache-dir install \
ipyparallel \
Expand Down

0 comments on commit d404555

Please sign in to comment.