Skip to content

Commit ed2705b

Browse files
Merge branch 'main' into feature/CDD-3162-popular-topics-grid-component
2 parents c4a0f5f + 8b2b026 commit ed2705b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.12.12
1+
3.12.13

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
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

99
FROM python:${PYTHON_VERSION}-slim AS build
1010

@@ -18,7 +18,7 @@ COPY requirements-prod-ingestion.txt requirements-prod-ingestion.txt
1818
# Main build process
1919
RUN 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
5656
RUN 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

requirements-prod-ingestion.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
asgiref==3.11.1
22
boto3==1.34.68
33
botocore==1.34.109
4-
Django==5.2.11
4+
Django==5.2.12
55
psycopg2-binary==2.9.10
66
pydantic==2.12.5
77
python-dotenv==1.2.1

requirements-prod.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ typing_extensions==4.15.0
8484
uritemplate==4.2.0
8585
urllib3==2.6.3
8686
virtualenv==20.38.0
87-
wagtail==7.3
87+
wagtail==7.3.1
8888
wagtail_trash==3.2.0
8989
wagtail_modeladmin==2.2.0
9090
webencodings==0.5.1

0 commit comments

Comments
 (0)