Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ALL_IMAGES:=$(ALL_STACKS)

# Dockerfile Linter
HADOLINT="${HOME}/hadolint"
HADOLINT_VERSION="v1.19.0"
HADOLINT_VERSION="v1.22.1"

# Enable BuildKit for Docker build
export DOCKER_BUILDKIT:=1
Expand Down
2 changes: 1 addition & 1 deletion base-notebook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ RUN wget --quiet "https://github.com/conda-forge/miniforge/releases/download/${m
RUN conda install --quiet --yes \
'notebook=6.2.0' \
'jupyterhub=1.3.0' \
'jupyterlab=3.0.7' && \
'jupyterlab=3.0.9' && \
conda clean --all -f -y && \
npm cache clean --force && \
jupyter notebook --generate-config && \
Expand Down
2 changes: 1 addition & 1 deletion pyspark-notebook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ USER $NB_UID

# Install pyarrow
RUN conda install --quiet --yes --satisfied-skip-solve \
'pyarrow=2.0.*' && \
'pyarrow=3.0.*' && \
conda clean --all -f -y && \
fix-permissions "${CONDA_DIR}" && \
fix-permissions "/home/${NB_USER}"
Expand Down
2 changes: 1 addition & 1 deletion scipy-notebook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN conda install --quiet --yes \
'numexpr=2.7.*' \
'pandas=1.2.*' \
'patsy=0.5.*' \
'protobuf=3.14.*' \
'protobuf=3.15.*' \
'pytables=3.6.*' \
'scikit-image=0.18.*' \
'scikit-learn=0.24.*' \
Expand Down