ScottzillaSystems commited on
Commit
04cb0cc
·
verified ·
1 Parent(s): 29281c1

[CHIMERA] Fix Python 3.13 pydub issue - switch to Docker/Python 3.11

Browse files
Files changed (1) hide show
  1. Dockerfile +17 -0
Dockerfile ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.11-slim
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
6
+
7
+ COPY requirements.txt /app/requirements.txt
8
+ RUN pip install --no-cache-dir -r requirements.txt
9
+
10
+ COPY app.py /app/app.py
11
+ COPY README.md /app/README.md
12
+
13
+ RUN mkdir -p /app/workspace /app/data
14
+
15
+ EXPOSE 7860
16
+
17
+ CMD ["python", "app.py"]