Skip to content
Snippets Groups Projects
Commit d7a0f7d5 authored by Byungheong Jeong's avatar Byungheong Jeong
Browse files

Update Dockerfile

parent c4978751
No related branches found
No related tags found
No related merge requests found
Pipeline #10716 passed
...@@ -23,7 +23,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ ...@@ -23,7 +23,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
ENV CONDA_DIR /opt/conda ENV CONDA_DIR /opt/conda
ENV PATH $CONDA_DIR/bin:$PATH ENV PATH $CONDA_DIR/bin:$PATH
RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-py37_4.8.2-Linux-x86_64.sh -O ~/miniconda.sh && \ RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-4.7.12.1-Linux-x86_64.sh -O ~/miniconda.sh && \
/bin/bash ~/miniconda.sh -b -p /opt/conda && \ /bin/bash ~/miniconda.sh -b -p /opt/conda && \
rm ~/miniconda.sh && \ rm ~/miniconda.sh && \
/opt/conda/bin/conda clean -tipsy && \ /opt/conda/bin/conda clean -tipsy && \
...@@ -45,7 +45,7 @@ RUN useradd -m -s /bin/bash -N -u $NB_UID $NB_USER && \ ...@@ -45,7 +45,7 @@ RUN useradd -m -s /bin/bash -N -u $NB_UID $NB_USER && \
USER $NB_USER USER $NB_USER
ARG python_version=3.7 ARG python_version=3.6
RUN conda config --append channels conda-forge RUN conda config --append channels conda-forge
RUN conda install -y python=${python_version} && \ RUN conda install -y python=${python_version} && \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment