File size: 235 Bytes
3fe47db
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM python:3.10-slim

# copy code
COPY . /ui

# install as a package
RUN pip install --upgrade pip && \
    pip install /ui/

WORKDIR /ui
EXPOSE 8501

# cmd for running the API
CMD ["python", "-m", "streamlit", "run", "ui/webapp.py"]