Skip to content

Commit

Permalink
[#379] Make use of Python3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
alextreme authored and annashamray committed Jun 21, 2024
1 parent 941ab4e commit 6cd1477
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1 - Compile needed python dependencies
FROM python:3.10-slim-bullseye AS backend-build
FROM python:3.11-slim-bullseye AS backend-build

RUN apt-get update && apt-get install -y --no-install-recommends \
pkg-config \
Expand Down Expand Up @@ -33,7 +33,7 @@ RUN npm run build


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

# Stage 3.1 - Set up the needed production dependencies
# install all the dependencies for GeoDjango
Expand Down
2 changes: 1 addition & 1 deletion requirements/ci.txt
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ kombu==5.3.5
# via
# -r requirements/base.txt
# celery
lxml==4.7.1
lxml==4.9.4
# via pyquery
markupsafe==2.1.3
# via
Expand Down
2 changes: 1 addition & 1 deletion requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ kombu==5.3.5
# via
# -r requirements/ci.txt
# celery
lxml==4.7.1
lxml==4.9.4
# via
# -r requirements/ci.txt
# pyquery
Expand Down

0 comments on commit 6cd1477

Please sign in to comment.