Skip to content

DEV: update gitpod docker #50007

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 2, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions gitpod/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# are visible in the host and container.
# The docker image is retrieved from the pandas dockerhub repository
#
# docker run --rm -it -v $(pwd):/home/pandas pandas/pandas-dev:<image-tag>
# docker run --rm -it -v $(pwd):/home/pandas pythonpandas/pandas-dev:<image-tag>
#
# By default the container will activate the conda environment pandas-dev
# which contains all the dependencies needed for pandas development
Expand Down Expand Up @@ -86,9 +86,9 @@ RUN chmod a+rx /usr/local/bin/workspace_config && \
# the container to create a conda environment from it
COPY environment.yml /tmp/environment.yml

RUN mamba env create -f /tmp/environment.yml
# ---- Create conda environment ----
RUN conda activate $CONDA_ENV && \
RUN mamba env create -f /tmp/environment.yml && \
conda activate $CONDA_ENV && \
mamba install ccache -y && \
# needed for docs rendering later on
python -m pip install --no-cache-dir sphinx-autobuild && \
Expand Down