Louadria commited on
Commit
ea9e2b8
·
verified ·
1 Parent(s): 853c327

Fix Python 3.13 audioop crash: add Dockerfile pinning Python 3.12

Browse files
Files changed (2) hide show
  1. Dockerfile +8 -0
  2. pyproject.toml +4 -0
Dockerfile ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.12-slim
2
+
3
+ WORKDIR /app
4
+ COPY . .
5
+
6
+ RUN pip install --no-cache-dir -r requirements.txt
7
+
8
+ CMD ["python", "app.py"]
pyproject.toml ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ [project]
2
+ requires-python = ">=3.10,<3.13"
3
+ name = "spill-demo"
4
+ version = "0.1.0"