Skip to content

Instantly share code, notes, and snippets.

@dettmering
Created December 11, 2016 11:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dettmering/28b6d986996bf9814e29af09a65269a3 to your computer and use it in GitHub Desktop.
Save dettmering/28b6d986996bf9814e29af09a65269a3 to your computer and use it in GitHub Desktop.
GSI GD Dockerfile
FROM ubuntu:16.04
MAINTAINER tilldettmering@gmail.com
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