READemption icon indicating copy to clipboard operation
READemption copied to clipboard

docker container without root

Open qiyubio opened this issue 3 years ago • 2 comments

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.

qiyubio avatar Nov 08 '22 17:11 qiyubio

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/

qiyubio avatar Nov 08 '22 18:11 qiyubio

Thank you for your making us aware of this issue. I'll double check your solution.

Tillsa avatar Oct 10 '23 14:10 Tillsa