Create Dockerfile
Browse files- Dockerfile +29 -0
Dockerfile
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Python 3.10 base image
|
2 |
+
FROM python:3.10
|
3 |
+
|
4 |
+
# Install system dependencies
|
5 |
+
RUN apt-get update && apt-get install -y \
|
6 |
+
git \
|
7 |
+
git-lfs \
|
8 |
+
ffmpeg \
|
9 |
+
libsm6 \
|
10 |
+
libxext6 \
|
11 |
+
cmake \
|
12 |
+
rsync \
|
13 |
+
libgl1-mesa-glx \
|
14 |
+
&& rm -rf /var/lib/apt/lists/* \
|
15 |
+
&& git lfs install
|
16 |
+
|
17 |
+
# Set work directory
|
18 |
+
WORKDIR /home/user/app
|
19 |
+
|
20 |
+
# Install Python dependencies
|
21 |
+
COPY requirements.txt .
|
22 |
+
RUN pip install --upgrade pip \
|
23 |
+
&& pip install --no-cache-dir -r requirements.txt
|
24 |
+
|
25 |
+
# Copy application files
|
26 |
+
COPY . .
|
27 |
+
|
28 |
+
# Run the application
|
29 |
+
CMD ["streamlit", "run", "app.py"]
|