File: Dockerfile

package info (click to toggle)
bedops 2.4.42%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 20,860 kB
  • sloc: ansic: 28,599; cpp: 15,359; sh: 2,704; makefile: 2,687; xml: 1,669; python: 1,581; csh: 823; perl: 365; java: 172
file content (16 lines) | stat: -rw-r--r-- 434 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# standalone docker image 
FROM debian:jessie

RUN apt-get update && apt-get -y upgrade
RUN apt-get install -y libc6-dev build-essential tcsh devscripts debhelper 
RUN apt-get clean

# copy the source context into the local image
#  note: make sure .dockerignore is up to date
COPY . /bedops

# build and install bedops into system path
WORKDIR /bedops
RUN make -j `nproc` && make install BINDIR=/usr/bin
WORKDIR /
RUN rm -rf /bedops