Spaces:
Runtime error
Runtime error
File size: 126 Bytes
7e430ac | 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" ] |