From 55526308f6d779447e7bee56abb92741ebe2afc4 Mon Sep 17 00:00:00 2001 From: ThePhaseless Date: Sun, 18 May 2025 01:03:12 +0200 Subject: [PATCH] bump debian version to bookworm --- .devcontainer/devcontainer.json | 2 +- .vscode/launch.json | 32 ++++++++++++++------------------ Dockerfile | 2 +- 3 files changed, 16 insertions(+), 20 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 0a60a47..ee3cc48 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -14,5 +14,5 @@ } } }, - "postCreateCommand": "cd .venv/lib/*/site-packages/seleniumbase/drivers && rm -f uc_driver && ln -s /usr/bin/chromedriver uc_driver" + "postCreateCommand": "uv sync --group test && cd .venv/lib/*/site-packages/seleniumbase/drivers && rm -f uc_driver && ln -s /usr/bin/chromedriver uc_driver" } diff --git a/.vscode/launch.json b/.vscode/launch.json index 3c689cb..6e48cb7 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,19 +1,15 @@ { - "configurations": [ - { - "console": "integratedTerminal", - "env": { - "LOG_LEVEL": "DEBUG" - }, - "justMyCode": false, - "name": "Python Debugger: Main", - "program": "main.py", - "request": "launch", - "type": "debugpy" - }, - ], - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0" -} \ No newline at end of file + "configurations": [ + { + "console": "integratedTerminal", + "env": { + "LOG_LEVEL": "DEBUG" + }, + "justMyCode": false, + "name": "Python Debugger: Main", + "program": "main.py", + "request": "launch", + "type": "debugpy" + } + ] +} diff --git a/Dockerfile b/Dockerfile index 6918a72..cf62aaa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:bullseye-slim AS base +FROM debian:bookworm-slim AS base ENV HOME=/root ARG GITHUB_BUILD=false \