diff --git a/src/docker_modules/ucsc/375/Dockerfile b/src/docker_modules/ucsc/375/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..0e30931cb6223c0c189e933fd4dbccc508c8d8cc --- /dev/null +++ b/src/docker_modules/ucsc/375/Dockerfile @@ -0,0 +1,12 @@ +FROM alpine:3.8 +MAINTAINER Laurent Modolo + +ENV UCSC_VERSION=375 +ENV PACKAGES rsync \ + bash + +RUN apk update && \ + apk add ${PACKAGES} + +RUN rsync -aP rsync://hgdownload.soe.ucsc.edu/genome/admin/exe/linux.x86_64/ /usr/bin/ + diff --git a/src/docker_modules/ucsc/375/docker_init.sh b/src/docker_modules/ucsc/375/docker_init.sh new file mode 100755 index 0000000000000000000000000000000000000000..ef314b4236476de4bc8c3735e9be51a1f3efc7c1 --- /dev/null +++ b/src/docker_modules/ucsc/375/docker_init.sh @@ -0,0 +1,2 @@ +#!/bin/sh +docker build src/docker_modules/ucsc/375/ -t 'ucsc:375'