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

UCSC: add Dockerfile

parent 504d7682
No related branches found
No related tags found
No related merge requests found
FROM alpine:3.8
FROM debian:jessie
MAINTAINER Laurent Modolo
ENV UCSC_VERSION=375
ENV PACKAGES rsync \
bash
ENV PACKAGES apt-utils \
curl \
build-essential
RUN apk update && \
apk add ${PACKAGES}
RUN apt-get update && \
apt-get install -y ${PACKAGES}
RUN rsync -aP rsync://hgdownload.soe.ucsc.edu/genome/admin/exe/linux.x86_64/ /usr/bin/
ENV UCSC_VERSION=375
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
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