Skip to content
Snippets Groups Projects
Unverified Commit 4d4b9c97 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

docker: add ucsc:400

parent bda23695
No related branches found
No related tags found
No related merge requests found
FROM debian:jessie
MAINTAINER Laurent Modolo
ENV PACKAGES apt-utils \
curl \
build-essential \
libssl-dev \
libpng-dev \
uuid-dev \
libmysqlclient-dev \
procps \
rsync
RUN apt-get update && \
apt-get install -y ${PACKAGES}
ENV UCSC_VERSION=400
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 &&\
cd .. &&\
mv userApps/bin/* /usr/bin/ &&\
rm -R userApps.v${UCSC_VERSION}.src.tgz &&\
rm -R userApps
#!/bin/sh
docker pull lbmc/ucsc:400
docker build src/.docker_modules/ucsc/400/ -t 'lbmc/ucsc:400'
docker push lbmc/ucsc:400
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment