changes for devcontainer

This commit is contained in:
avollkopf 2024-05-02 19:02:02 +02:00
parent daf9495722
commit 07ffe0dea8
2 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
FROM mcr.microsoft.com/vscode/devcontainers/python:3.11-bullseye
FROM mcr.microsoft.com/vscode/devcontainers/python:3.11-bookworm
RUN apt-get update \
&& apt-get upgrade -y

8
.vscode/launch.json vendored
View file

@ -7,7 +7,7 @@
{
"name": "run CraftBeerPi4",
"type": "python",
"type": "debugpy",
"request": "launch",
"module": "run",
"args": [
@ -20,7 +20,7 @@
{
"name": "create CraftBeerPi4 plugin",
"type": "python",
"type": "debugpy",
"request": "launch",
"module": "run",
"args": ["--config-folder-path=./.devcontainer/cbpi-dev-config", "create"]
@ -28,7 +28,7 @@
{
"name": "setup CraftBeerPi4: create config folder structure",
"type": "python",
"type": "debugpy",
"request": "launch",
"module": "run",
"args": ["--config-folder-path=./.devcontainer/cbpi-dev-config", "setup"]
@ -36,7 +36,7 @@
{
"name": "run tests",
"type": "python",
"type": "debugpy",
"request": "launch",
"module": "pytest",
"args": ["tests"]