chore(deps): update python to v3.13.1
This commit is contained in:
parent
29d76a8a12
commit
1d890a261e
@ -4,7 +4,7 @@ on: [push]
|
|||||||
jobs:
|
jobs:
|
||||||
python:
|
python:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: python:3.13.0-slim
|
container: python:3.13.1-slim
|
||||||
steps:
|
steps:
|
||||||
- run: apt-get update
|
- run: apt-get update
|
||||||
- run: apt-get install -y git nodejs
|
- run: apt-get install -y git nodejs
|
||||||
|
@ -4,14 +4,14 @@ WORKDIR /app
|
|||||||
COPY . .
|
COPY . .
|
||||||
RUN npm ci && npm run build
|
RUN npm ci && npm run build
|
||||||
|
|
||||||
FROM python:3.13.0-slim AS backend
|
FROM python:3.13.1-slim AS backend
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY . .
|
COPY . .
|
||||||
COPY --from=frontend /app/backend/dist /app/backend/dist
|
COPY --from=frontend /app/backend/dist /app/backend/dist
|
||||||
RUN pip install poetry && poetry build
|
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
|
COPY --from=backend /app/dist /tmp/dist
|
||||||
RUN pip install /tmp/dist/*.whl && rm -rf /tmp/dist
|
RUN pip install /tmp/dist/*.whl && rm -rf /tmp/dist
|
||||||
|
@ -10,7 +10,7 @@ include = ["backend/dist/**"]
|
|||||||
pilotwings = 'backend.pilotwings:launch'
|
pilotwings = 'backend.pilotwings:launch'
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = ">=3.8"
|
python = ">=3.13.1"
|
||||||
docker = "^7.1.0"
|
docker = "^7.1.0"
|
||||||
fastapi = {extras = ["standard"], version = "^0.115.6"}
|
fastapi = {extras = ["standard"], version = "^0.115.6"}
|
||||||
python-dotenv = "^1.0.1"
|
python-dotenv = "^1.0.1"
|
||||||
|
Loading…
Reference in New Issue
Block a user