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: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
FROM python:3.12-slim

RUN python -m pip install --no-cache-dir --upgrade "pip>=25.3"

# Install curl for healthcheck
RUN apt-get update && \
apt-get install -y curl git && \
Expand Down
1 change: 1 addition & 0 deletions docker/package-restore.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ if [ ! -d "venv" ]
then
python3 -m venv venv
. venv/bin/activate
pip install --upgrade "pip>=25.3"
if [ -f "requirements.txt" ]
then
pip install -r requirements.txt
Expand Down