diff --git a/Dockerfile b/Dockerfile index e09f1d5..eb95d90 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ RUN cmake \ && make \ && make install -FROM python:3.12.7-alpine3.20@sha256:e75de178bc15e72f3f16bf75a6b484e33d39a456f03fc771a2b3abb9146b75f8 AS poetry +FROM python:3.13.0-alpine3.20@sha256:81362dd1ee15848b118895328e56041149e1521310f238ed5b2cdefe674e6dbf AS poetry ENV POETRY_VERSION=1.8.3 \ PIP_DISABLE_PIP_VERSION_CHECK=on WORKDIR /app @@ -28,7 +28,7 @@ RUN apk add --update --no-cache \ COPY poetry.lock poetry.toml pyproject.toml /app/ RUN poetry export --without-hashes --format requirements.txt --output requirements.txt -FROM python:3.12.7-alpine3.20@sha256:e75de178bc15e72f3f16bf75a6b484e33d39a456f03fc771a2b3abb9146b75f8 AS runtime +FROM python:3.13.0-alpine3.20@sha256:81362dd1ee15848b118895328e56041149e1521310f238ed5b2cdefe674e6dbf AS runtime ENV PIP_DISABLE_PIP_VERSION_CHECK=on \ EDITOR=vim \ BEETSDIR=/config diff --git a/poetry.lock b/poetry.lock index d689b89..173d7de 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1111,5 +1111,5 @@ test = ["pytest (>=6.0.0)", "setuptools (>=65)"] [metadata] lock-version = "2.0" -python-versions = "^3.12.7" -content-hash = "94415bea3b9c32f4b42943dbfd1f0bbcab97b5f7ee4c113acd88731c1be548d3" +python-versions = "^3.13.0" +content-hash = "a770065a3f9c7334d295cc08e94a18f688d5ab1f4f812fb9d95868bb40ecfdee" diff --git a/pyproject.toml b/pyproject.toml index 1b5a2c5..dbde782 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ license = "MIT" readme = "README.md" [tool.poetry.dependencies] -python = "^3.12.7" +python = "^3.13.0" beets = "2.0.0" flask = "^3.0.3" pillow = "^10.4.0"