File size: 240 Bytes
aa4251c
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
FROM tensorflow/tensorflow:1.14.0-gpu-py3
RUN pip install jupyter

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

EXPOSE 7860

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