Create Dockerfile
Browse files- 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"]
|