bump debian version to bookworm

This commit is contained in:
ThePhaseless
2025-05-18 01:03:12 +02:00
parent cdb3223a87
commit 55526308f6
3 changed files with 16 additions and 20 deletions
+1 -1
View File
@@ -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"
}
+14 -18
View File
@@ -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"
}
"configurations": [
{
"console": "integratedTerminal",
"env": {
"LOG_LEVEL": "DEBUG"
},
"justMyCode": false,
"name": "Python Debugger: Main",
"program": "main.py",
"request": "launch",
"type": "debugpy"
}
]
}
+1 -1
View File
@@ -1,4 +1,4 @@
FROM debian:bullseye-slim AS base
FROM debian:bookworm-slim AS base
ENV HOME=/root
ARG GITHUB_BUILD=false \