GANcMRI / Dockerfile
vukadinovic936
init
aa4251c
raw
history blame
240 Bytes
FROM tensorflow/tensorflow:1.14.0-gpu-py3
RUN pip install jupyter
WORKDIR /data
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
COPY . .
CMD ["streamlit", "run", "app.py", "--server.port", "7860"]