File: Dockerfile.build

package info (click to toggle)
megadepth 1.2.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 980 kB
  • sloc: cpp: 4,701; sh: 717; ansic: 170; perl: 49; makefile: 20
file content (8 lines) | stat: -rw-r--r-- 200 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
FROM centos:7

RUN yum update -y && yum install -y cmake wget gcc gcc-c++ bzip2 autoconf zlib-devel make zip unzip curl-devel

ADD entry.sh /entry.sh
RUN chmod a+x /entry.sh

ENTRYPOINT ["/entry.sh"]