READemption
READemption copied to clipboard
docker container without root
Hi, the docker image is useful although can't be used by users without root on HPC. I will suggest to change the location of miniconda to non-root directory in docker such as /opt/conda.
Here is the template for Dockerfile, it works while I build with docker and then convert to singularity image, you are welcome to test the docker image too:
From continuumio/miniconda3
ARG DEBIAN_FRONTEND=noninteractive
ENV PATH="/opt/conda/bin:${PATH}"
ARG PATH="/opt/conda/bin:${PATH}"
ENV TZ=Europe/Berlin
RUN conda config --add channels conda-forge
RUN conda config --add channels bioconda
RUN conda install -c till_sauerwein reademption -y
WORKDIR /opt/
Thank you for your making us aware of this issue. I'll double check your solution.