2021-04-07 17:33:15 +02:00
|
|
|
FROM python:3.8-alpine
|
2018-07-13 05:33:41 +02:00
|
|
|
|
|
|
|
LABEL maintainer="ahkui <ahkui@outlook.com>"
|
|
|
|
|
|
|
|
USER root
|
|
|
|
|
2019-03-01 05:16:08 +01:00
|
|
|
RUN apk add --no-cache build-base zeromq-dev
|
2018-07-13 05:33:41 +02:00
|
|
|
|
|
|
|
RUN python -m pip --quiet --no-cache-dir install \
|
|
|
|
ipyparallel
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2019-03-01 05:16:08 +01:00
|
|
|
CMD ["sh","-c","ipcontroller --ip=* --reuse"]
|