From ed6aadc55f7bdff64673d1de17cefeffe78e7e06 Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Sun, 22 Dec 2024 10:15:39 +0100 Subject: [PATCH] chore: :arrow_up: update python --- .gitea/workflows/pilotwings.yml | 2 +- Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/pilotwings.yml b/.gitea/workflows/pilotwings.yml index 154aae6..f8caefe 100644 --- a/.gitea/workflows/pilotwings.yml +++ b/.gitea/workflows/pilotwings.yml @@ -4,7 +4,7 @@ on: [push] jobs: python: runs-on: ubuntu-latest - container: python:3.13.0-slim + container: python:3.13.1-slim steps: - run: apt-get update - run: apt-get install -y git nodejs diff --git a/Dockerfile b/Dockerfile index ae9dfeb..c0a9b2e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,14 +4,14 @@ WORKDIR /app COPY . . RUN npm ci && npm run build -FROM python:3.13.0-slim AS backend +FROM python:3.13.1-slim AS backend WORKDIR /app COPY . . COPY --from=frontend /app/backend/dist /app/backend/dist RUN pip install poetry && poetry build -FROM python:3.13.0-slim +FROM python:3.13.1-slim COPY --from=backend /app/dist /tmp/dist RUN pip install /tmp/dist/*.whl && rm -rf /tmp/dist