Skip to content

Commit

Permalink
Fix build issues
Browse files Browse the repository at this point in the history
Signed-off-by: Isaiah Stapleton <istaplet@redhat.com>
  • Loading branch information
IsaiahStapleton committed Nov 21, 2023
1 parent d077a44 commit 2ee1796
Show file tree
Hide file tree
Showing 17 changed files with 25 additions and 26 deletions.
9 changes: 5 additions & 4 deletions containers/default/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,11 @@ USER ${NB_UID}
# these need to be installed to the prerequisite versions before we can install the rest of the
# packages. Install Python 3 packages

RUN conda install --quiet --yes conda=23.3.1 python=3.9.16 --no-pin --force-reinstall && \
conda install --quiet --yes ${PYTHON_PREREQ_VERSIONS} && \
conda install --quiet --yes ${PYTHON_INSTALL_PACKAGES} && \
pip install jupyterlab_rise==0.2.0 && \
RUN mamba install --yes python=3.9.13 --no-pin --force-reinstall && \
mamba install --yes ${PYTHON_PREREQ_VERSIONS} && \
mamba install --yes ${PYTHON_INSTALL_PACKAGES} && \
mamba install --yes nbclient && \
mamba install --yes jupyterlab_rise==0.2.0 && \
fix-permissions "${CONDA_DIR}" && \
fix-permissions "/home/${NB_USER}" && \
mamba clean -afy
Expand Down
3 changes: 1 addition & 2 deletions containers/default/base/base_tag
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
:latest

:x86_64-python-3.9.13
2 changes: 1 addition & 1 deletion containers/default/base/pip_pkgs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
jupyterquiz
jupyterquiz
2 changes: 1 addition & 1 deletion containers/default/base/python_pkgs
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ jupyterlab-spellchecker
nbconvert
pyppeteer
gdb
jupyterlab-myst==1.1.3
jupyterlab-myst==1.1.3
2 changes: 1 addition & 1 deletion containers/default/base/python_prereqs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
nbclient==0.5.13
jsonschema
jsonschema
9 changes: 5 additions & 4 deletions containers/testing/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,11 @@ USER ${NB_UID}
# packages. Install Python 3 packages
#RUN python --version

RUN conda install --quiet --yes conda=23.3.1 python=3.9.16 --no-pin --force-reinstall && \
conda install --quiet --yes ${PYTHON_PREREQ_VERSIONS} && \
conda install --quiet --yes ${PYTHON_INSTALL_PACKAGES} && \
pip install jupyterlab_rise==0.2.0 && \
RUN mamba install --yes python=3.9.13 --no-pin --force-reinstall && \
mamba install --yes ${PYTHON_PREREQ_VERSIONS} && \
mamba install --yes ${PYTHON_INSTALL_PACKAGES} && \
mamba install --yes nbclient && \
mamba install --yes jupyterlab_rise==0.2.0 && \
fix-permissions "${CONDA_DIR}" && \
fix-permissions "/home/${NB_USER}" && \
mamba clean -afy
Expand Down
3 changes: 1 addition & 2 deletions containers/testing/base/base_tag
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
:latest

:x86_64-python-3.9.13
3 changes: 1 addition & 2 deletions containers/testing/base/distro_pkgs
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,4 @@ libnss3
lsb-release
xdg-utils
wget
dos2unix

dos2unix
2 changes: 1 addition & 1 deletion containers/testing/base/ope_book
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ope-test
ope-test
2 changes: 1 addition & 1 deletion containers/testing/base/ope_book_registry
Original file line number Diff line number Diff line change
@@ -1 +1 @@
quay.io
quay.io
2 changes: 1 addition & 1 deletion containers/testing/base/ope_book_user
Original file line number Diff line number Diff line change
@@ -1 +1 @@
opeffort
opeffort
2 changes: 1 addition & 1 deletion containers/testing/base/ope_gid
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0
0
2 changes: 1 addition & 1 deletion containers/testing/base/ope_group
Original file line number Diff line number Diff line change
@@ -1 +1 @@
root
root
2 changes: 1 addition & 1 deletion containers/testing/base/ope_registry_user
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sdanni
rh-ee-istaplet
2 changes: 1 addition & 1 deletion containers/testing/base/pip_pkgs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
jupyterquiz
jupyterquiz
2 changes: 1 addition & 1 deletion containers/testing/base/python_pkgs
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ pyppeteer
gdb
jupyterlab-myst==1.1.3
jupyterlab==3.6.1
numpy==1.24.3
numpy==1.24.3
2 changes: 1 addition & 1 deletion containers/testing/base/python_prereqs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
nbclient==0.5.13
jsonschema
jsonschema

0 comments on commit 2ee1796

Please sign in to comment.