Created
December 11, 2016 11:14
-
-
Save dettmering/28b6d986996bf9814e29af09a65269a3 to your computer and use it in GitHub Desktop.
GSI GD Dockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:16.04 | |
MAINTAINER [email protected] | |
RUN apt-get update &&\ | |
apt-get install --no-install-recommends -y \ | |
ksh \ | |
xvfb \ | |
wget &&\ | |
apt-get clean -y && rm -rf /var/lib/apt/lists/* | |
RUN wget http://bio.gsi.de/DOCS/GDEXPORT/GD.linux2626-x86.9712h.tar.gz | |
RUN mkdir /root/GD && mv GD.linux2626-x86.9712h.tar.gz /root/GD/ && cd /root/GD/ &&\ | |
uncompress GD.linux2626-x86.9712h.tar.gz &&\ | |
tar -xvf GD.linux2626-x86.9712h.tar | |
ENV GD=/root/GD | |
ENV PATH=$GD/BIN:$PATH |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment