-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
42 lines (26 loc) · 899 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
33
34
35
36
37
38
39
40
41
42
FROM ubuntu:20.04
ENV PATH="/root/miniconda3/bin:${PATH}"
ARG PATH="/root/miniconda3/bin:${PATH}"
RUN apt update && apt install -y wget
RUN wget \
https://repo.anaconda.com/miniconda/Miniconda3-py39_4.11.0-Linux-x86_64.sh\
&& mkdir /root/.conda \
&& bash Miniconda3-py39_4.11.0-Linux-x86_64.sh -b \
&& rm -f Miniconda3-py39_4.11.0-Linux-x86_64.sh
RUN apt-get update -y && apt-get install -y bc
RUN apt-get install -y zip
RUN apt-get install -y bzip2
RUN apt-get install -y xz-utils
RUN apt-get install -y zstd
RUN apt-get install -y gzip
RUN apt-get install -y gcc-multilib
RUN apt-get install -y build-essential
RUN apt-get install -y clang
RUN apt-get install -y git
RUN conda install anaconda-client --yes
RUN conda install -c bioconda libgcc --yes
RUN pip3 install -r requirements.pip
RUN chmod +x ./*sh
ADD . /compact
WORKDIR /compact
CMD tail -f >> /dev/null