Skip to content
Snippets Groups Projects
Verified Commit 9eb61947 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

gffread: add version 0.12.2

parent bd5b4ace
No related branches found
No related tags found
No related merge requests found
FROM alpine:3.12
MAINTAINER Laurent Modolo
ENV GFFREAD_VERSION=0.12.2
ENV PACKAGES make \
g++ \
bash \
perl
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.12.2
docker build src/.docker_modules/gffread/0.12.2 -t 'lbmc/gffread:0.12.2'
docker push lbmc/gffread:0.12.2
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