pythonTemplate

This commit is contained in:
2025-10-28 06:16:21 +00:00
commit 1cf61e1b1f

View File

@@ -0,0 +1,15 @@
{
"workdir": "/workdir",
"base_image": "python:3.11",
"setup_commands": [
"apt-get update && apt-get install -y build-essential"
],
"install_commands": [
"pip install -r requirements.txt",
"pip install pytest black flake8"
],
"env": [
"PYTHONPATH=/workdir",
"DEBUG=true"
]
}