diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 0b52aa6..124fdd3 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: 3.8 + python-version: 3.13 - name: Install Python dependencies run: pip install black flake8 diff --git a/backend/Dockerfile b/backend/Dockerfile index 2824d4f..b642046 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,5 +1,5 @@ # Use a lightweight Python image -FROM python:3.9-slim-buster +FROM python:3.11-slim-buster # Set the working directory to /app WORKDIR /app