Spaces:
Running
Running
File size: 126 Bytes
c233d32 |
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" ] |