mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-08 18:44:06 +00:00

* Add an ability to specify registry when using docker images
* Fix typo
* [TMP] Speedup workflow
* Revert "[TMP] Speedup workflow"
This reverts commit 3af0055ccf
.
13 lines
456 B
Docker
13 lines
456 B
Docker
FROM docker.io/jupyter/base-notebook
|
|
|
|
# Install in the default python3 environment
|
|
RUN pip install --no-cache-dir 'flake8' && \
|
|
fix-permissions "${CONDA_DIR}" && \
|
|
fix-permissions "/home/${NB_USER}"
|
|
|
|
# Install from the requirements.txt file
|
|
COPY --chown=${NB_UID}:${NB_GID} requirements.txt /tmp/
|
|
RUN pip install --no-cache-dir --requirement /tmp/requirements.txt && \
|
|
fix-permissions "${CONDA_DIR}" && \
|
|
fix-permissions "/home/${NB_USER}"
|