Skip to content

Commit 5241bd0

Browse files
DEV: update gitpod docker (pandas-dev#50007)
1 parent 3d0d197 commit 5241bd0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gitpod/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# are visible in the host and container.
1414
# The docker image is retrieved from the pandas dockerhub repository
1515
#
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>
1717
#
1818
# By default the container will activate the conda environment pandas-dev
1919
# which contains all the dependencies needed for pandas development
@@ -86,9 +86,9 @@ RUN chmod a+rx /usr/local/bin/workspace_config && \
8686
# the container to create a conda environment from it
8787
COPY environment.yml /tmp/environment.yml
8888

89-
RUN mamba env create -f /tmp/environment.yml
9089
# ---- Create conda environment ----
91-
RUN conda activate $CONDA_ENV && \
90+
RUN mamba env create -f /tmp/environment.yml && \
91+
conda activate $CONDA_ENV && \
9292
mamba install ccache -y && \
9393
# needed for docs rendering later on
9494
python -m pip install --no-cache-dir sphinx-autobuild && \

0 commit comments

Comments
 (0)