Skip to content

Commit

Permalink
Do not cache pip installs to reduce unnecessary bloat
Browse files Browse the repository at this point in the history
  • Loading branch information
bdevans authored Sep 17, 2024
1 parent 21824da commit 317f912
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ WORKDIR ${CHASTE_DIR}

# Install TextTest for regression testing (requires pygtk)
# NOTE: chaste-codegen is installed by CMake
RUN python -m pip install --upgrade pip && \
python -m pip install texttest
RUN python -m pip install --no-cache-dir --upgrade pip && \
python -m pip install --no-cache-dir texttest

# Create Chaste src, build, output and projects folders
RUN mkdir -p "${CHASTE_SOURCE_DIR}" "${CHASTE_BUILD_DIR}" "${CHASTE_TEST_OUTPUT}" && \
Expand Down

0 comments on commit 317f912

Please sign in to comment.