File size: 316 Bytes
ad86ce1
1f09140
ad86ce1
 
1f09140
 
 
ad86ce1
 
 
 
 
 
1f09140
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3.12-slim
EXPOSE 80 443 8501

WORKDIR /app
RUN apt-get update && \
    apt-get install -y build-essential gcc python3-dev pkg-config libhdf5-dev && \
    rm -rf /var/lib/apt/lists/*

COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt

COPY . .

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