Skip to content

Commit 6cd1477

Browse files
alextremeannashamray
authored andcommitted
[#379] Make use of Python3.11
1 parent 941ab4e commit 6cd1477

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Stage 1 - Compile needed python dependencies
2-
FROM python:3.10-slim-bullseye AS backend-build
2+
FROM python:3.11-slim-bullseye AS backend-build
33

44
RUN apt-get update && apt-get install -y --no-install-recommends \
55
pkg-config \
@@ -33,7 +33,7 @@ RUN npm run build
3333

3434

3535
# Stage 3 - Build docker image suitable for execution and deployment
36-
FROM python:3.10-slim-bullseye AS production
36+
FROM python:3.11-slim-bullseye AS production
3737

3838
# Stage 3.1 - Set up the needed production dependencies
3939
# install all the dependencies for GeoDjango

requirements/ci.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ kombu==5.3.5
343343
# via
344344
# -r requirements/base.txt
345345
# celery
346-
lxml==4.7.1
346+
lxml==4.9.4
347347
# via pyquery
348348
markupsafe==2.1.3
349349
# via

requirements/dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ kombu==5.3.5
382382
# via
383383
# -r requirements/ci.txt
384384
# celery
385-
lxml==4.7.1
385+
lxml==4.9.4
386386
# via
387387
# -r requirements/ci.txt
388388
# pyquery

0 commit comments

Comments
 (0)