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

Salmon/0.8.2: add docker files

parent 65508b53
No related branches found
No related tags found
No related merge requests found
FROM ubuntu:18.04
MAINTAINER Laurent Modolo
ENV SALMON_VERSION=0.8.2
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/COMBINE-lab/salmon/releases/download/v${SALMON_VERSION}/Salmon-${SALMON_VERSION}_linux_x86_64.tar.gz -o Salmon-${SALMON_VERSION}_linux_x86_64.tar.gz && \
tar xzf Salmon-${SALMON_VERSION}_linux_x86_64.tar.gz && \
mv Salmon-${SALMON_VERSION}_linux_x86_64/bin/* /usr/bin/ && \
rm -Rf Salmon-${SALMON_VERSION}*
#!/bin/sh
docker build src/nf_modules/Salmon/0.8.2 -t 'salmon:0.8.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