Spaces:
Runtime error
Runtime error
| FROM pytorch/pytorch:latest | |
| FROM nginxinc/nginx-unprivileged:alpine | |
| COPY . /usr/share/nginx/html | |
| WORKDIR /app | |
| COPY . . | |
| RUN pip install -r requirements.txt | |
| CMD [ "streamlit", "run", "app.py" ] |