File size: 314 Bytes
60ecf68
c37ca4f
 
 
 
 
2c74034
c37ca4f
 
 
dacbab4
c37ca4f
 
 
 
 
b6a4727
c37ca4f
57d2cd8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM ubuntu:22.04

LABEL Version="1.0"

RUN apt-get update -y

RUN apt-get install -y python3-pip python3-dev build-essential python3

COPY ./app /app

EXPOSE 7860

WORKDIR /app

RUN pip3 install --no-cache-dir --upgrade pip

RUN pip3 install -r requirements.txt

ENTRYPOINT streamlit run app.py --server.port 7860