From 89787486985410b5d1422c16efbd710452ac3847 Mon Sep 17 00:00:00 2001 From: "Yohsuke T. Fukai" Date: Fri, 17 May 2024 11:12:14 +0900 Subject: [PATCH] Revert "Pre-fetch bioformats jars during docker build" --- Dockerfile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7693ee8..3f6ed33 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,12 +14,6 @@ ENV PATH=/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin: # Installing basicpy and other pip packages RUN pip --no-cache-dir install basicpy==1.2.0 bioformats_jar -# Pre-fetch bioformats jars to a world-readable location -RUN python -c 'import bfio; bfio.start()' \ - && mv /root/.jgo /root/.m2 /tmp \ - && chmod -R a+rwX /tmp/.jgo /tmp/.m2 -ENV HOME=/tmp - # Copy script and test run COPY ./main.py /opt/ # RUN mkdir /data