File size: 380 Bytes
0ff6151
d992864
 
 
c3756d0
d992864
 
 
c3756d0
 
 
 
 
d992864
 
 
63d8f05
c3756d0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18


FROM python:3.9

ENV PATH="/home/user/.local/bin:$PATH"

WORKDIR /app

COPY . /app

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

COPY --chown=user ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt

EXPOSE 7860
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]