Commit 5241bd0 1 parent 3d0d197 commit 5241bd0 Copy full SHA for 5241bd0
File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 13
13
# are visible in the host and container.
14
14
# The docker image is retrieved from the pandas dockerhub repository
15
15
#
16
- # docker run --rm -it -v $(pwd):/home/pandas pandas /pandas-dev:<image-tag>
16
+ # docker run --rm -it -v $(pwd):/home/pandas pythonpandas /pandas-dev:<image-tag>
17
17
#
18
18
# By default the container will activate the conda environment pandas-dev
19
19
# which contains all the dependencies needed for pandas development
@@ -86,9 +86,9 @@ RUN chmod a+rx /usr/local/bin/workspace_config && \
86
86
# the container to create a conda environment from it
87
87
COPY environment.yml /tmp/environment.yml
88
88
89
- RUN mamba env create -f /tmp/environment.yml
90
89
# ---- Create conda environment ----
91
- RUN conda activate $CONDA_ENV && \
90
+ RUN mamba env create -f /tmp/environment.yml && \
91
+ conda activate $CONDA_ENV && \
92
92
mamba install ccache -y && \
93
93
# needed for docs rendering later on
94
94
python -m pip install --no-cache-dir sphinx-autobuild && \
You can’t perform that action at this time.
0 commit comments