File size: 490 Bytes
838b463
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
FROM python:3.10

# Install basic dependencies
RUN apt-get update && apt-get install -y \
    git \
    curl \
    libsm6 \
    libxext6 \
    ffmpeg \
    && rm -rf /var/lib/apt/lists/*

# Install necessary Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt

# Set the working directory and copy the application files
WORKDIR /app
COPY . /app

# Expose the app on a port (e.g., 8501 for Streamlit)
EXPOSE 8501

CMD ["streamlit", "run", "app.py"]