forked from BiBiServ/dialign-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
18 lines (14 loc) · 700 Bytes
/
Copy pathDockerfile
File metadata and controls
18 lines (14 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM ubuntu:14.04
MAINTAINER Peter Belmann
# ENV http_proxy http://rzproxy.helmholtz-hzi.de:3128
# ENV https_proxy http://rzproxy.helmholtz-hzi.de:3128
ARG DIALIGN_DESTINATION=/dialign
RUN apt-get update
RUN apt-get install -y wget build-essential
RUN wget http://bibiserv.techfak.uni-bielefeld.de/applications/dialign/resources/downloads/dialign-2.2.1-src.tar.gz
RUN tar xzvf dialign-2.2.1-src.tar.gz --owner root --group root --no-same-owner
ENV DIALIGN_PATH /dialign_package
RUN make -C ${DIALIGN_PATH}/src
ENV DIALIGN2_DIR ${DIALIGN_PATH}/dialign2_dir
RUN mkdir -p $(dirname $DIALIGN_DESTINATION) && mv ${DIALIGN_PATH}/src/dialign2-2 ${DIALIGN_DESTINATION}
ENTRYPOINT [$DIALIGN_DESTINATION]