File size: 182 Bytes
1228ed9
 
 
 
 
 
 
 
d32fd22
94d3611
1
2
3
4
5
6
7
8
9
10
11
FROM bitnami/pytorch

WORKDIR /app

COPY ./requirements.txt /app/requirements.txt

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

EXPOSE 7860
CMD streamlit run /app/app.py