photo-colorization / Dockerfile
Lodor
Initial commit
47c60f9
raw
history blame contribute delete
126 Bytes
FROM pytorch/pytorch:latest
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD [ "streamlit", "run", "app.py" ]