Skip to content
Snippets Groups Projects
Dockerfile.myst 233 B
Newer Older
Bengt Giger's avatar
Bengt Giger committed
ARG CI_COMMIT_TAG
ARG CI_REGISTRY_IMAGE

FROM ${CI_REGISTRY_IMAGE}:latest-noMyST

USER root

RUN PIP_PROXY=http://proxy.ethz.ch:3128 pip3 install --proxy=http://proxy.ethz.ch:3128 --default-timeout=100 \
  jupyterlab_myst

USER 1000