Update dependency python (#32)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
parent
5496bcdf5a
commit
dbf255bc89
2 changed files with 3 additions and 3 deletions
2
.github/workflows/docker-publish.yml
vendored
2
.github/workflows/docker-publish.yml
vendored
|
|
@ -19,7 +19,7 @@ jobs:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-python@v5
|
- uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: 3.12
|
python-version: 3.13
|
||||||
- run: pipx install uv
|
- run: pipx install uv
|
||||||
- run: uv venv
|
- run: uv venv
|
||||||
- run: source .venv/bin/activate
|
- run: source .venv/bin/activate
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
# Stage 1: Build the requirements.txt using Poetry
|
# Stage 1: Build the requirements.txt using Poetry
|
||||||
FROM python:3.12-slim AS builder
|
FROM python:3.13-slim AS builder
|
||||||
|
|
||||||
# Set environment variables for Python
|
# Set environment variables for Python
|
||||||
ENV PYTHONDONTWRITEBYTECODE 1
|
ENV PYTHONDONTWRITEBYTECODE 1
|
||||||
|
|
@ -24,7 +24,7 @@ COPY pyproject.toml poetry.lock /app/
|
||||||
RUN poetry self add poetry-plugin-export && poetry export --format=requirements.txt --output=requirements.txt --only=main --without-hashes
|
RUN poetry self add poetry-plugin-export && poetry export --format=requirements.txt --output=requirements.txt --only=main --without-hashes
|
||||||
|
|
||||||
# Stage 2: Install dependencies and run the Django application
|
# Stage 2: Install dependencies and run the Django application
|
||||||
FROM python:3.12-slim AS runner
|
FROM python:3.13-slim AS runner
|
||||||
|
|
||||||
# Set environment variables for Python
|
# Set environment variables for Python
|
||||||
ENV PYTHONDONTWRITEBYTECODE 1
|
ENV PYTHONDONTWRITEBYTECODE 1
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue