Skip to content

Commit

Permalink
first run successfull, but we still need to fix rtg
Browse files Browse the repository at this point in the history
  • Loading branch information
subwaystation committed May 8, 2023
1 parent c21c76c commit 466f27f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -158,14 +158,18 @@ RUN wget https://github.com/RealTimeGenomics/rtg-tools/releases/download/3.12.1/
# Install base R
# NOTE: we might have to go the conda way on the long run
# https://www.reddit.com/r/Rlanguage/comments/oi31xn/installing_r41_on_debian_bullseye_testing/
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-key B8F25A8A73EACF41 \
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-key B8F25A8A73EACF41 \
&& echo "deb http://cloud.r-project.org/bin/linux/debian bullseye-cran40/" > /etc/apt/sources.list.d/r-packages.list \
&& apt update \
&& apt install -y r-base \
&& apt-get clean \
&& apt-get purge \
&& rm -rf /var/lib/apt/lists/*

RUN wget https://github.com/arq5x/bedtools2/releases/download/v2.31.0/bedtools.static \
&& mv bedtools.static /usr/local/bin/bedtools \
&& chmod +x /usr/local/bin/bedtools

# copy required scripts
COPY scripts/* /usr/local/bin/

Expand Down

0 comments on commit 466f27f

Please sign in to comment.