Skip to content

Commit 1290acf

Browse files
committed
⬆️ upgraded python from 3.10 to 3.11
1 parent 302c257 commit 1290acf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
- uses: actions/checkout@v4
7979
- uses: actions/setup-python@v5
8080
with:
81-
python-version: '3.10'
81+
python-version: '3.11'
8282
- uses: actions/setup-node@v4
8383
with:
8484
node-version: '18'

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-bookworm AS build
2+
FROM python:3.11-slim-bookworm AS build
33

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

3535

3636
# Stage 3 - Build docker image suitable for execution and deployment
37-
FROM python:3.10-slim-bookworm AS production
37+
FROM python:3.11-slim-bookworm AS production
3838

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

0 commit comments

Comments
 (0)