diff --git a/stardist/0.8.5/Dockerfile b/stardist/0.8.5/Dockerfile new file mode 100644 index 00000000..14fe3ccb --- /dev/null +++ b/stardist/0.8.5/Dockerfile @@ -0,0 +1,29 @@ +FROM tensorflow/tensorflow:2.11.0-gpu-jupyter + +LABEL base_image="tensorflow:2.11.0-gpu-jupyter" +LABEL version="1" +LABEL maintainer="ko.sugawara@ens-lyon.fr" +LABEL software="stardist" +LABEL software.version="0.8.5" +LABEL about.summary="Object Detection with Star-convex Shapes." +LABEL about.home="https://github.com/stardist/stardist" +LABEL about.license="BSD-3-Clause" +LABEL about.license_file="https://github.com/stardist/stardist/blob/master/LICENSE.txt" + +MAINTAINER Florian Wuennemann + +ARG DEBIAN_FRONTEND="noninteractive" +ARG STARDIST_VERSION="0.8.5" +ARG NVIDIA_DRIVER_VERSION=470 + +RUN apt-get update && apt-get install -y --no-install-recommends \ + ocl-icd-dev \ + ocl-icd-opencl-dev \ + opencl-headers \ + clinfo \ + libnvidia-compute-${NVIDIA_DRIVER_VERSION} \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* + +RUN python3 -m pip install --upgrade pip +RUN pip install stardist==$STARDIST_VERSION gputools edt \ No newline at end of file