Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion scripts/apply-database-config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ sudo apt install -y libpq-dev python3-dev

python -m venv ./env
source ./env/bin/activate
pip install --upgrade pip pipenv
pip install --upgrade pip pipenv==2026.0.3
pipenv install --dev --system --deploy
echo "Done."

Expand Down
2 changes: 1 addition & 1 deletion tdrs-backend/Dockerfile.base
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN apt-get update && \
python3-dev \
curl \
ca-certificates && \
pip install --no-cache-dir --upgrade pip pipenv && \
pip install --no-cache-dir --upgrade pip pipenv==2026.0.3 && \
# If we can remove the '--dev' we will save 200MB. However, so much depends on it that it is easier to keep it for now.
pipenv install --dev --system --deploy && \
rm -rf /var/lib/apt/lists/*
Expand Down