1 Star 0 Fork 0

michaelowenliu/ritm_interactive_segmentation

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
Konstantin Sofiiuk 提交于 2021-02-13 04:23 +08:00 . Init commit
FROM nvidia/cuda:10.1-cudnn7-devel-ubuntu18.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
git \
curl \
libglib2.0-0 \
software-properties-common \
python3.6-dev \
python3-pip \
python3-tk
WORKDIR /tmp
RUN pip3 install --upgrade pip
RUN pip3 install setuptools
RUN pip3 install matplotlib numpy pandas scipy tqdm pyyaml easydict scikit-image bridson Pillow ninja
RUN pip3 install imgaug mxboard graphviz
RUN pip3 install albumentations --no-deps
RUN pip3 install opencv-python-headless
RUN pip3 install Cython
RUN pip3 install torch
RUN pip3 install torchvision
RUN pip3 install scikit-learn
RUN pip3 install tensorboard
RUN mkdir /work
WORKDIR /work
RUN chmod -R 777 /work && chmod -R 777 /root
ENV TINI_VERSION v0.18.0
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /usr/bin/tini
RUN chmod +x /usr/bin/tini
ENTRYPOINT [ "/usr/bin/tini", "--" ]
CMD [ "/bin/bash" ]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/michaelowenliu/ritm_interactive_segmentation.git
git@gitee.com:michaelowenliu/ritm_interactive_segmentation.git
michaelowenliu
ritm_interactive_segmentation
ritm_interactive_segmentation
master

搜索帮助