-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathDockerfile
More file actions
26 lines (23 loc) · 827 Bytes
/
Dockerfile
File metadata and controls
26 lines (23 loc) · 827 Bytes
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
FROM debian:trixie
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
git \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir /conda \
&& cd /conda \
&& curl -L 'https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh' -O \
&& bash Miniconda3-latest-Linux-x86_64.sh -b -p /conda/install \
&& /conda/install/bin/conda init \
&& echo '' > /conda/install/.condarc \
&& git clone 'https://github.com/Xinglab/rMATS-long.git' /rMATS-long \
&& cd /rMATS-long \
&& ./install
ENV PATH /rMATS-long/conda_env/bin:${PATH}
# Set defaults for running the image.
# The ENTRYPOINT and CMD are empty to be compatible with
# CWL and WDL implementations that cannot override those values
WORKDIR /rMATS-long
ENTRYPOINT []
CMD []