Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy-github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.14
- run: pip install \
mkdocs-material
# Build the mkdocs site
Expand Down
2 changes: 1 addition & 1 deletion docs/mkdocs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From python:3.12
From python:3.14

COPY ./aep-docs /aep-docs/

Expand Down
2 changes: 1 addition & 1 deletion inference/src/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9
FROM python:3.14

WORKDIR /app

Expand Down
4 changes: 2 additions & 2 deletions src/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1: Builder for Python 3.9
FROM python:3.9 AS builder39
FROM python:3.14 AS builder39

WORKDIR /app

Expand All @@ -13,7 +13,7 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
COPY . /app

# Stage 2: Builder for Python 3.12
FROM python:3.12 AS builder312
FROM python:3.14 AS builder312

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion src/docker/dev/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12
FROM python:3.14

WORKDIR /app

Expand Down
Loading