File size: 258 Bytes
7092157
 
 
 
 
 
4dbd180
 
cf74841
7092157
 
 
e0b86e4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3.10

WORKDIR /code

COPY ./requirements.txt /code/requirements.txt

RUN apt update; apt install -y libgl1

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

COPY . .

CMD ["streamlit", "run", "app.py", "--server.port", "7860"]