Skip to content

Commit fc04120

Browse files
committed
Fixes for docker file
1 parent 53e7e09 commit fc04120

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM jupyter/r-notebook:latest
22

33
ARG GRB_SHORT_VERSION=9.5
44
ARG GRB_VERSION=9.5.0
5-
ARG PYTHON_VERSION=3.10.4
5+
ARG PYTHON_VERSION=3.10
66

77
COPY /build_scripts/pip_install.txt "${HOME}/pip_install.txt"
88
COPY /build_scripts/mamba_install.txt "${HOME}/mamba_install.txt"
@@ -18,7 +18,7 @@ RUN conda config --quiet --add channels conda-forge \
1818
# Remove python from pinned versions; this allows us to update python. From: https://stackoverflow.com/a/11245372/13885200 \
1919
&& sed -i "s/^python 3.*//" /opt/conda/conda-meta/pinned \
2020
&& mamba install --quiet --yes python=${PYTHON_VERSION} \
21-
&& mamba env update --quiet --name base --file "${ENVIRONMENT_FILE}" \
21+
&& mamba env update --quiet --name=base --file="${ENVIRONMENT_FILE}" \
2222
# && mamba install --file "${HOME}/mamba_install.txt" \
2323
# && python3 -m pip install -r "${HOME}/pip_install.txt" \
2424
#&& mamba env update --name base --file "${ENVIRONMENT_FILE}" \

0 commit comments

Comments
 (0)