Skip to content

Commit

Permalink
programming env
Browse files Browse the repository at this point in the history
  • Loading branch information
kohanlee1995 committed Dec 5, 2023
1 parent c88ac00 commit 75acf87
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,19 @@ RUN apt-get update && apt-get install -y \
apt-utils=2.0.9 \
gdebi-core=0.9.5.7+nmu3 \
dpkg-sig=0.13.1+nmu4 \
manpages=5.05-1 \
man-db=2.9.1-1 \
manpages-posix=2013a-2 \
tree=1.8.0-1 \
&& rm -rf /var/lib/apt/lists/*

USER $NB_USER
RUN conda config --set channel_priority strict && \
mamba install -y -n base -c conda-forge --override-channels bash_kernel nb_conda_kernels

COPY programming-R.yaml /tmp
RUN mamba env create --file /tmp/programming-R.yaml && \
mamba clean -afy

RUN yes | unminimize || echo "done"

USER $NB_USER

0 comments on commit 75acf87

Please sign in to comment.