mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-07 10:04:03 +00:00
Add an ability to specify registry when using docker images (#2008)
* Add an ability to specify registry when using docker images
* Fix typo
* [TMP] Speedup workflow
* Revert "[TMP] Speedup workflow"
This reverts commit 3af0055ccf
.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
FROM jupyter/base-notebook
|
||||
FROM docker.io/jupyter/base-notebook
|
||||
|
||||
# Name your environment and choose the python version
|
||||
ARG env_name=python310
|
||||
|
@@ -1,4 +1,4 @@
|
||||
FROM jupyter/base-notebook
|
||||
FROM docker.io/jupyter/base-notebook
|
||||
|
||||
# Install the Dask dashboard
|
||||
RUN mamba install --yes 'dask-labextension' && \
|
||||
|
@@ -1,4 +1,4 @@
|
||||
FROM jupyter/base-notebook
|
||||
FROM docker.io/jupyter/base-notebook
|
||||
|
||||
RUN mamba install --yes 'jupyterhub==4.0.1' && \
|
||||
mamba clean --all -f -y && \
|
||||
|
@@ -1,4 +1,4 @@
|
||||
FROM jupyter/base-notebook
|
||||
FROM docker.io/jupyter/base-notebook
|
||||
|
||||
RUN mamba install --yes 'flake8' && \
|
||||
mamba clean --all -f -y && \
|
||||
|
@@ -1,4 +1,4 @@
|
||||
FROM jupyter/base-notebook
|
||||
FROM docker.io/jupyter/base-notebook
|
||||
|
||||
# Fix: https://github.com/hadolint/hadolint/wiki/DL4006
|
||||
# Fix: https://github.com/koalaman/shellcheck/wiki/SC3014
|
||||
|
@@ -1,4 +1,4 @@
|
||||
FROM jupyter/base-notebook
|
||||
FROM docker.io/jupyter/base-notebook
|
||||
|
||||
# Fix: https://github.com/hadolint/hadolint/wiki/DL4006
|
||||
# Fix: https://github.com/koalaman/shellcheck/wiki/SC3014
|
||||
|
@@ -1,4 +1,4 @@
|
||||
FROM jupyter/base-notebook
|
||||
FROM docker.io/jupyter/base-notebook
|
||||
|
||||
USER root
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
FROM jupyter/base-notebook
|
||||
FROM docker.io/jupyter/base-notebook
|
||||
|
||||
# Install in the default python3 environment
|
||||
RUN pip install --no-cache-dir 'flake8' && \
|
||||
|
@@ -1,4 +1,4 @@
|
||||
FROM jupyter/base-notebook
|
||||
FROM docker.io/jupyter/base-notebook
|
||||
|
||||
RUN mamba install --yes 'jupyterlab_rise' && \
|
||||
mamba clean --all -f -y && \
|
||||
|
@@ -1,4 +1,4 @@
|
||||
FROM jupyter/base-notebook:notebook-6.5.4
|
||||
FROM docker.io/jupyter/base-notebook:notebook-6.5.4
|
||||
|
||||
RUN pip install --no-cache-dir 'jupyter_contrib_nbextensions' && \
|
||||
jupyter contrib nbextension install --user && \
|
||||
|
@@ -1,4 +1,4 @@
|
||||
FROM jupyter/base-notebook
|
||||
FROM docker.io/jupyter/base-notebook
|
||||
|
||||
RUN mamba install --yes 'py-xgboost' && \
|
||||
mamba clean --all -f -y && \
|
||||
|
Reference in New Issue
Block a user