File size: 126 Bytes
206ce41
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
FROM pytorch/pytorch:latest

WORKDIR /app

COPY . .

RUN pip install -r requirements.txt

CMD [ "streamlit", "run", "app.py" ]