File size: 126 Bytes
02b1531 |
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" ] |
02b1531 |
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" ] |