File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
55WORKDIR /app
You can’t perform that action at this time.
0 commit comments