Skip to content

Commit 41f7066

Browse files
committed
Cruft Update
1 parent 6e80632 commit 41f7066

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

.cruft.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
{
22
"template": "https://github.com/kjaymiller/cookiecutter-relecloud/",
3-
"commit": "04ac8410200b9d270bf7f07d1ae0d96837f5b5d9",
3+
"commit": "5361c11e1ead790f7eb0b7a15cd6e803c44c4d7e",
44
"checkout": null,
55
"context": {
66
"cookiecutter": {
77
"project_name": "azure",
8+
"python_version": "3.12",
89
"project_backend": "fastapi",
910
"db_resource": "cosmos-postgres",
1011
"project_host": "aca",

.devcontainer/Dockerfile_dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/devcontainers/python:3.11-bullseye
1+
FROM mcr.microsoft.com/devcontainers/python:3.12-bullseye
22

33
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
44
&& apt-get -y install --no-install-recommends postgresql-client \

.github/workflows/azure-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
push:
66
branches:
77
- main
8-
- cruft/update
8+
- cruft/update*
99

1010
# GitHub Actions workflow to deploy to Azure using azd
1111
# To configure required secrets for connecting to Azure, simply run `azd pipeline config`

.github/workflows/cruft.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
- uses: actions/setup-python@v4
3030
with:
31-
python-version: "3.10"
31+
python-version: "3.12"
3232

3333
- name: Install Cruft
3434
run: pip3 install -r requirements-dev.txt

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v3
1919
- uses: actions/setup-python@v4
2020
with:
21-
python-version: 3.11
21+
python-version: 3.12
2222
cache: 'pip'
2323
- name: Install dependencies
2424
run: |

src/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/devcontainers/python:3.11-bullseye
1+
FROM mcr.microsoft.com/devcontainers/python:3.12-bullseye
22

33
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
44
&& apt-get -y install --no-install-recommends postgresql-client \

0 commit comments

Comments
 (0)