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

Kallisto/0.44.0: add Dockerfile

parent b9807a5c
No related branches found
No related tags found
No related merge requests found
FROM ubuntu:18.04
MAINTAINER Laurent Modolo
ENV KALLISTO_VERSION=0.44.0
ENV PACKAGES curl=7.58.0* \
ca-certificates=20180409
RUN apt-get update && \
apt-get install -y --no-install-recommends ${PACKAGES} && \
apt-get clean
RUN curl -k -L https://github.com/pachterlab/kallisto/releases/download/v${KALLISTO_VERSION}/kallisto_linux-v${KALLISTO_VERSION}.tar.gz -o kallisto_linux-v${KALLISTO_VERSION}.tar.gz && \
tar xzf kallisto_linux-v${KALLISTO_VERSION}.tar.gz && \
cp kallisto_linux-v${KALLISTO_VERSION}/kallisto /usr/bin && \
rm -Rf kallisto_linux-v${KALLISTO_VERSION}*
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