From 07ffe0dea827615622ed6a7b26fa3525ba1f8c83 Mon Sep 17 00:00:00 2001 From: avollkopf <43980694+avollkopf@users.noreply.github.com> Date: Thu, 2 May 2024 19:02:02 +0200 Subject: [PATCH] changes for devcontainer --- .devcontainer/Dockerfile | 2 +- .vscode/launch.json | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 5930049..4b72b28 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -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 diff --git a/.vscode/launch.json b/.vscode/launch.json index 0b0fdc4..334051b 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -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"]