-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathDockerfile
32 lines (26 loc) · 891 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
FROM continuumio/miniconda3
########### set variables
ENV DEBIAN_FRONTEND noninteractive
######### dependencies
RUN apt-get -y update -qq \
&& apt-get install -y \
build-essential \
wget \
unzip \
bzip2 \
git \
libidn11* \
nano \
less \
bc \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
############################################################ install MetONTIIME
WORKDIR /home/
RUN wget https://data.qiime2.org/distro/amplicon/qiime2-amplicon-2023.9-py38-linux-conda.yml
RUN conda env create -n MetONTIIME_env --file qiime2-amplicon-2023.9-py38-linux-conda.yml
RUN rm qiime2-amplicon-2023.9-py38-linux-conda.yml
RUN conda install -n MetONTIIME_env -c bioconda seqtk
RUN /opt/conda/envs/MetONTIIME_env/bin/python -m pip install nanofilt
ENV PATH /opt/conda/envs/MetONTIIME_env/bin:$PATH
ENV CONDA_PREFIX /opt/conda/envs/MetONTIIME_env