rogerscuall commited on
Commit
67a3451
·
1 Parent(s): 2d1a8ae

Update environment flask-server

Browse files

Setting up Python environment with Flask

.container-use/AGENT.md CHANGED
@@ -1 +1 @@
1
- No instructions found. Please look around the filesystem and update me
 
1
+ This environment contains a simple Flask server that serves a basic web application. To run it, use `python app.py`.
.container-use/environment.json CHANGED
@@ -1,4 +1,7 @@
1
  {
2
  "workdir": "/workdir",
3
- "base_image": "ubuntu:24.04"
 
 
 
4
  }
 
1
  {
2
  "workdir": "/workdir",
3
+ "base_image": "python:3.9-slim",
4
+ "setup_commands": [
5
+ "pip install flask"
6
+ ]
7
  }