File tree 1 file changed +12
-3
lines changed
1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change 1
1
FROM docker.io/aomlomics/tourmaline:latest
2
2
3
- ENV NB_USER=qiime2 \
3
+ ENV NB_USER=jovyan \
4
4
NB_UID=1000 \
5
5
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
7
16
8
17
USER ${NB_USER}
9
18
@@ -19,4 +28,4 @@ RUN conda install --name qiime2-2023.5 ipykernel && conda clean --all
19
28
RUN python -m ipykernel install --prefix ${CONDA_DIR}/envs/snakemake --name snakemake --display-name snakemake
20
29
RUN python -m ipykernel install --prefix ${CONDA_DIR}/envs/qiime2-2023.5 --name qiime2-2023.5 --display-name qiime2
21
30
22
- WORKDIR /home/${NB_USER }
31
+ WORKDIR ${HOME }
You can’t perform that action at this time.
0 commit comments