From 1cf61e1b1fcaaf5f91d05f9b2c8c665b18726d42 Mon Sep 17 00:00:00 2001 From: nathan Date: Tue, 28 Oct 2025 06:16:21 +0000 Subject: [PATCH] pythonTemplate --- .container-use/environment.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .container-use/environment.json diff --git a/.container-use/environment.json b/.container-use/environment.json new file mode 100644 index 0000000..f46c5b6 --- /dev/null +++ b/.container-use/environment.json @@ -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" + ] +}