Viraj2307 commited on
Commit
c705655
·
verified ·
1 Parent(s): 18725bd

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +17 -0
Dockerfile ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10-slim
2
+
3
+ # Install system dependencies for portaudio
4
+ RUN apt-get update && \
5
+ apt-get install -y portaudio19-dev && \
6
+ apt-get clean
7
+
8
+ # Install Python dependencies
9
+ COPY requirements.txt .
10
+ RUN pip install -r requirements.txt
11
+
12
+ # Copy the application files
13
+ COPY . /app
14
+
15
+ WORKDIR /app
16
+
17
+ CMD ["python", "page.py"]