Skip to content

Commit 37a20d9

Browse files
committed
user jovyan but home dir qiime2
1 parent b64de25 commit 37a20d9

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

images/aomlomics-jh/Dockerfile

+12-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
FROM docker.io/aomlomics/tourmaline:latest
22

3-
ENV NB_USER=qiime2 \
3+
ENV NB_USER=jovyan \
44
NB_UID=1000 \
55
CONDA_DIR=/opt/conda
6-
ENV HOME=/home/${NB_USER}
6+
ENV HOME=/home/qiime2
7+
8+
USER root
9+
RUN echo "Creating ${NB_USER} user..." \
10+
# Create a group for the user to be part of, with gid same as uid
11+
&& groupadd --gid ${NB_UID} ${NB_USER} \
12+
# Create non-root user, with given gid, uid and create $HOME
13+
&& useradd --create-home --gid ${NB_UID} --no-log-init --uid ${NB_UID} ${NB_USER} \
14+
# Make sure that /opt (where conda lives) is owned by non-root user, so we can install things there
15+
&& chown -R ${NB_USER}:${NB_USER} /opt
716

817
USER ${NB_USER}
918

@@ -19,4 +28,4 @@ RUN conda install --name qiime2-2023.5 ipykernel && conda clean --all
1928
RUN python -m ipykernel install --prefix ${CONDA_DIR}/envs/snakemake --name snakemake --display-name snakemake
2029
RUN python -m ipykernel install --prefix ${CONDA_DIR}/envs/qiime2-2023.5 --name qiime2-2023.5 --display-name qiime2
2130

22-
WORKDIR /home/${NB_USER}
31+
WORKDIR ${HOME}

0 commit comments

Comments
 (0)