File: Dockerfile

package info (click to toggle)
rapmap 0.15.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 6,228 kB
  • sloc: cpp: 48,810; ansic: 4,686; sh: 215; python: 82; makefile: 15
file content (22 lines) | stat: -rw-r--r-- 815 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM phusion/holy-build-box-64:latest

RUN set -x

# Install things we need
RUN yum install -y --quiet wget
#RUN wget http://download.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm
#RUN rpm -i --quiet epel-release-5-4.noarch.rpm
#yum install -y --quiet git
RUN yum install -y --quiet unzip
RUN yum install -y --quiet git

# java
RUN wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/8u60-b27/jre-8u60-linux-x64.rpm" -O jre-8u60-linux-x64.rpm
RUN yum localinstall --nogpgcheck -y --quiet jre-8u60-linux-x64.rpm
RUN rm jre-8u60-linux-x64.rpm

# and nextflow
RUN curl -fsSL get.nextflow.io | bash
RUN mv nextflow /usr/local/bin/

RUN yum install -y --quiet shasum