Files
container-use/.container-use/environment.json
2025-10-28 06:16:21 +00:00

16 lines
311 B
JSON

{
"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"
]
}