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

docker: add gffread:0.11.8

parent 26a87183
No related branches found
No related tags found
No related merge requests found
FROM alpine:3.12
MAINTAINER Laurent Modolo
ENV GFFREAD_VERSION=0.11.8
ENV PACKAGES make \
g++
RUN apk update && \
apk add ${PACKAGES} && \
wget http://ccb.jhu.edu/software/stringtie/dl/gffread-${GFFREAD_VERSION}.tar.gz && \
tar -xvf gffread-${GFFREAD_VERSION}.tar.gz && \
cd gffread-${GFFREAD_VERSION}/ && \
make && \
cp gffread /usr/bin/
#!/bin/sh
docker pull lbmc/gffread:0.11.8
docker build src/.docker_modules/gffread/0.11.8 -t 'lbmc/gffread:0.11.8'
docker push lbmc/gffread:0.11.8
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