Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merging 5174/5176/5178 to prod #5179

Merged
merged 13 commits into from
Oct 31, 2023
4 changes: 2 additions & 2 deletions deployments/julia/image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ ENV NB_USER jovyan
ENV NB_UID 1000
ENV SHELL /bin/bash

ENV CONDA_DIR /opt/conda
ENV JULIA_DIR /opt/julia
ENV CONDA_DIR /srv/conda
ENV JULIA_DIR /srv/julia

ENV PATH ${JULIA_DIR}/bin:${CONDA_DIR}/bin:$PATH

Expand Down
8 changes: 6 additions & 2 deletions deployments/julia/image/environment.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
dependencies:
- nodejs==18.*
- nodejs==20.8.1
- pip==22.3.1
- python==3.11.*
- python==3.10.13
- requests==2.31.0

- syncthing==1.18.6

# bug w/notebook and traitlets: https://github.com/jupyter/notebook/issues/7048
- traitlets=5.9.*

# from requirements.txt
- matplotlib==3.7.2

Expand All @@ -15,5 +18,6 @@ dependencies:
# For https://github.com/berkeley-dsep-infra/datahub/issues/3079
- websockify
- pip:
- notebook==6.5.6
- jupyter-desktop-server
- otter-grader==3.1.4
2 changes: 1 addition & 1 deletion deployments/julia/image/install-mambaforge.bash
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -ex

cd $(dirname $0)
MAMBAFORGE_VERSION=4.10.3-7
MAMBAFORGE_VERSION='23.3.1-1'

URL="https://github.com/conda-forge/miniforge/releases/download/${MAMBAFORGE_VERSION}/Mambaforge-${MAMBAFORGE_VERSION}-Linux-x86_64.sh"
INSTALLER_PATH=/tmp/mambaforge-installer.sh
Expand Down