Skip to content

Commit d18a98c

Browse files
committed
Merge branch 'main' into latest
2 parents 79f441b + 4fb5640 commit d18a98c

3 files changed

Lines changed: 28 additions & 3 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,24 @@
33
{
44
"name": "Python 3",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6-
"image": "mcr.microsoft.com/devcontainers/python:1-3.12-bullseye",
6+
"image": "mcr.microsoft.com/devcontainers/python:3-3.14-trixie",
7+
78
// Features to add to the dev container. More info: https://containers.dev/features.
89
// "features": {},
10+
911
// Use 'forwardPorts' to make a list of ports inside the container available locally.
1012
// "forwardPorts": [],
13+
1114
// Use 'postCreateCommand' to run commands after the container is created.
1215
// "postCreateCommand": "pip3 install --user -r requirements.txt",
16+
1317
// Configure tool-specific properties.
1418
// "customizations": {},
19+
1520
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
1621
// "remoteUser": "root"
1722
"remoteEnv": {
1823
"PODMAN_USERNS": "keep-id"
1924
},
2025
"containerUser": "vscode"
21-
}
26+
}

.github/dependabot.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for more information:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
# https://containers.dev/guide/dependabot
6+
7+
version: 2
8+
updates:
9+
- package-ecosystem: "devcontainers"
10+
directory: "/"
11+
schedule:
12+
interval: weekly
13+
- package-ecosystem: "pip"
14+
directory: "/"
15+
schedule:
16+
interval: daily
17+
- package-ecosystem: "docker"
18+
directory: "/"
19+
schedule:
20+
interval: daily

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Use an official Python runtime as a parent image
2-
FROM python:3-slim
2+
FROM python:3.14.4-slim-trixie
33

44
# Set the working directory in the container
55
WORKDIR /app

0 commit comments

Comments
 (0)