Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update python docker tag to v3.12 #6769

Merged
merged 8 commits into from
Nov 14, 2023
Merged
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
7 changes: 6 additions & 1 deletion python/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
FROM python:3.11-slim
{{#language.version}}
FROM python:{{{.}}}-slim
{{/language.version}}
{{^language.version}}
FROM python:3.12-slim
{{/language.version}}

WORKDIR /usr/src/app

Expand Down
1 change: 1 addition & 0 deletions python/aiohttp/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ framework:
- uvloop

language:
version: 3.11
engines:
gunicorn:
environment:
Expand Down
4 changes: 3 additions & 1 deletion python/config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language:
version: 3.11
version: 3.12

engines:
cheroot:
Expand Down Expand Up @@ -76,6 +76,8 @@ language:
framework:
engines:
- gunicorn
build_deps:
- build-essential
files:
- "**/*.py"
- requirements.txt
1 change: 1 addition & 0 deletions python/emmett/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ framework:
- libssl-dev

language:
version: 3.11
engines:
gunicorn:
environment:
Expand Down
1 change: 1 addition & 0 deletions python/happyx/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ framework:
- happyx

language:
version: 3.11
engines:
happyx:
command: python server.py
1 change: 1 addition & 0 deletions python/masonite/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ framework:
- rustup default nightly

language:
version: 3.11
engines:
gunicorn:
environment:
Expand Down
1 change: 1 addition & 0 deletions python/nameko/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ framework:
- nameko.yaml

language:
version: 3.11
engines:
nameko:
command: nameko run server --config nameko.yaml
Loading