Skip to content

Commit 1c33e72

Browse files
committed
Images updated.
1 parent d9fd8af commit 1c33e72

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

fastapi_template/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def checker(ctx: BuilderContext) -> bool:
156156
),
157157
additional_info=Database(
158158
name="mysql",
159-
image="mysql:8.4",
159+
image="mysql:9.6",
160160
async_driver="mysql+aiomysql",
161161
driver_short="mysql",
162162
driver="mysql",
@@ -175,7 +175,7 @@ def checker(ctx: BuilderContext) -> bool:
175175
),
176176
additional_info=Database(
177177
name="postgresql",
178-
image="postgres:18.1-bookworm",
178+
image="postgres:18.3-trixie",
179179
async_driver="postgresql+asyncpg",
180180
driver_short="postgres",
181181
driver="postgresql",

fastapi_template/template/{{cookiecutter.project_name}}/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM ghcr.io/astral-sh/uv:0.9.12-bookworm AS uv
1+
FROM ghcr.io/astral-sh/uv:0.11.7-python3.13-trixie AS uv
22

33
# -----------------------------------
44
# STAGE 1: prod stage
55
# Only install main dependencies
66
# -----------------------------------
7-
FROM python:3.13-slim-bookworm AS prod
7+
FROM python:3.13-slim-trixie AS prod
88

99
{%- if cookiecutter.db_info.name == "mysql" %}
1010
RUN apt-get update && apt-get install -y \

0 commit comments

Comments
 (0)