Skip to content
Snippets Groups Projects
Dockerfile 630 B
Newer Older
Laurent Modolo's avatar
Laurent Modolo committed
FROM debian:jessie
Laurent Modolo's avatar
Laurent Modolo committed
MAINTAINER Laurent Modolo

Laurent Modolo's avatar
Laurent Modolo committed
ENV PACKAGES apt-utils \
             curl \
Laurent Modolo's avatar
Laurent Modolo committed
             build-essential \
             libssl-dev \
             libpng-dev \
             uuid-dev \
             libmysqlclient-dev \
             rsync

Laurent Modolo's avatar
Laurent Modolo committed

Laurent Modolo's avatar
Laurent Modolo committed
RUN apt-get update && \
    apt-get install -y ${PACKAGES}
Laurent Modolo's avatar
Laurent Modolo committed

Laurent Modolo's avatar
Laurent Modolo committed
ENV UCSC_VERSION=375
Laurent Modolo's avatar
Laurent Modolo committed

Laurent Modolo's avatar
Laurent Modolo committed
RUN curl -k -L http://hgdownload.soe.ucsc.edu/admin/exe/userApps.v${UCSC_VERSION}.src.tgz -o userApps.v${UCSC_VERSION}.src.tgz &&\
tar xvf userApps.v${UCSC_VERSION}.src.tgz &&\
cd userApps/ && \
make &&\
mv userApps/bin/* /usr/bin/ &&\
rm -R userApps.v${UCSC_VERSION}.src.tgz &&\
rm -R userApps