We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5e2d9a commit 8b74acdCopy full SHA for 8b74acd
.github/workflows/test.yml
@@ -12,7 +12,7 @@ jobs:
12
- name: Set up Python 3.12
13
uses: actions/setup-python@v5
14
with:
15
- python-version: "3.12"
+ python-version: "3.13"
16
17
- name: Setup poetry
18
run: curl -sSL https://install.python-poetry.org | python3 -
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM python:3.12-alpine as poetry
+FROM python:3.13-alpine as poetry
2
3
WORKDIR /root
4
@@ -11,7 +11,7 @@ COPY pyproject.toml poetry.lock ./
11
RUN poetry export -E celery -o requirements.txt
# app
-FROM python:3.12-slim
+FROM python:3.13-slim
RUN apt-get -qq update && \
apt-get install -qqy --no-install-recommends g++ aria2 ffmpeg && \
0 commit comments