File tree Expand file tree Collapse file tree
template/{{cookiecutter.project_name}} Expand file tree Collapse file tree Original file line number Diff line number Diff 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" ,
Original file line number Diff line number Diff line change 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" %}
1010RUN apt-get update && apt-get install -y \
You can’t perform that action at this time.
0 commit comments