| | |
| |
|
| | |
| | FROM tensorflow/tensorflow:2.9.1-gpu |
| | RUN apt-get install libopenexr-dev -y |
| | RUN pip install tensorflow-mri |
| | RUN pip install tqdm |
| | RUN pip install h5py |
| | RUN pip install tensorflow-addons |
| | |
| | RUN pip install scikit-image |
| | RUN pip install jupyter |
| | RUN pip install typing_extensions --upgrade |
| | |
| | |
| | RUN pip install utils |
| | RUN pip install matplotlib |
| | RUN pip install --upgrade pip |
| | |
| | RUN pip install opencv-python |
| | |
| | RUN pip install gdown==2.3.1 |
| | RUN pip install pydicom |
| | RUN pip install scikit-learn |
| | RUN pip install tabulate |
| | RUN pip install pingouin |
| | RUN pip install streamlit |
| | RUN pip install openpyxl |
| | RUN pip install "protobuf<=3.20.3" |
| |
|
| | RUN apt-get update && \ |
| | apt-get install -y ffmpeg |
| |
|
| | RUN pip install ffmpeg-python |
| | RUN pip install gputil |
| |
|
| |
|
| | |
| | WORKDIR /app |
| | COPY . /app |
| |
|
| | |
| | ENV STREAMLIT_BROWSER_GATHER_USAGE_STATS=false \ |
| | PYTHONUNBUFFERED=1 |
| |
|
| | EXPOSE 8501 |
| |
|
| | |
| | CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"] |
| |
|