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
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
ARG PYTHON_VERSION=3.10-slim-buster
# https://www.debian.org/releases/stable/
# https://hub.docker.com/_/python/
ARG PYTHON_VERSION=3.13-slim-bookworm

FROM python:${PYTHON_VERSION}

Expand All @@ -20,7 +22,7 @@ RUN apt-get install -y --no-install-recommends \
make \
build-essential \
g++ \
postgresql-client \
postgresql-client libpq-dev \
git

RUN mkdir -p /code
Expand Down
2 changes: 1 addition & 1 deletion requirements/common.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ django-enforce-host==1.1.0
defusedxml==0.7.1

# Used for image field handling
pillow==10.3.0
pillow==11.3.0
3 changes: 2 additions & 1 deletion requirements/deployment.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
-r common.txt

# Database server
psycopg2-binary==2.9.9
# https://www.psycopg.org/docs/install.html#install-from-source
psycopg2==2.9.10

# Email
django-anymail==10.3
Expand Down