File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1- 3.12.12
1+ 3.12.13
Original file line number Diff line number Diff line change 44# Default arguments
55# This version is hardcoded but ideally it should pull from the `.python-version`
66# When bumping Python versions, we currently have to update the `.python-version` file and this `ARG`
7- ARG PYTHON_VERSION=3.12.6
7+ ARG PYTHON_VERSION=3.12.13
88
99FROM python:${PYTHON_VERSION}-slim AS build
1010
@@ -18,7 +18,7 @@ COPY requirements-prod-ingestion.txt requirements-prod-ingestion.txt
1818# Main build process
1919RUN apt-get update \
2020 # Update the database of available packages
21- && apt-get -y install libpq-dev gcc \
21+ && apt-get -y install libpq-dev gcc libnss3-dev libexpat1-dev \
2222 # Install toolchain needed for C libraries like `psycopg2`
2323 && python3 -m venv /venv \
2424 # Create the python virtual environment
@@ -55,7 +55,7 @@ EXPOSE 8000
5555# Reinstall system libraries required for PostgreSQL drivers
5656RUN apt-get update \
5757 # Update the database of available packages
58- && apt-get -y install libpq-dev \
58+ && apt-get -y install libpq-dev libnss3-dev libexpat1-dev \
5959 # Reinstall the C library needed for `psycopg2`
6060 && chmod +x entrypoint.sh
6161 # Add execution permission for the entrypoint shell script
Original file line number Diff line number Diff line change 11asgiref==3.11.1
22boto3==1.34.68
33botocore==1.34.109
4- Django==5.2.11
4+ Django==5.2.12
55psycopg2-binary==2.9.10
66pydantic==2.12.5
77python-dotenv==1.2.1
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ typing_extensions==4.15.0
8484uritemplate==4.2.0
8585urllib3==2.6.3
8686virtualenv==20.38.0
87- wagtail==7.3
87+ wagtail==7.3.1
8888wagtail_trash==3.2.0
8989wagtail_modeladmin==2.2.0
9090webencodings==0.5.1
You can’t perform that action at this time.
0 commit comments