Skip to content

Commit 5f41905

Browse files
Update dependency python
1 parent bc16e9e commit 5f41905

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Set up Python 3.10
2424
uses: actions/setup-python@v3
2525
with:
26-
python-version: "3.10"
26+
python-version: "3.13"
2727
- name: Install dependencies
2828
run: |
2929
python -m pip install --upgrade pip

.github/workflows/python-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Python 3.10
2323
uses: actions/setup-python@v3
2424
with:
25-
python-version: "3.10"
25+
python-version: "3.13"
2626
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.10-slim as build
1+
FROM python:3.13-slim as build
22

33
RUN apt-get update
44
RUN apt-get install -y --no-install-recommends build-essential gcc
@@ -29,7 +29,7 @@ COPY requirements.txt .
2929
RUN pip install -r requirements.txt
3030

3131
# FROM python:3.12.0b3-slim@sha256:8e3ef64883278384c49293caf631d614b4bfdac7bb494d44e17cf2d711ce2652
32-
FROM python:3.10-slim@sha256:2bac43769ace90ebd3ad83e5392295e25dfc58e58543d3ab326c3330b505283d
32+
FROM python:3.13-slim@sha256:f635b0495acd31f6b4ce20423b672710c1b5647bc833d60a9faa76f2c60fb8e4
3333

3434
RUN groupadd -g 999 python && \
3535
useradd -r -u 999 -g python python

0 commit comments

Comments
 (0)