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

Merge: 88f47c9 (nanopipe/master)

parent 4194f0de
No related branches found
No related tags found
No related merge requests found
FROM ubuntu:16.04
Maintainer Chen Yuelong <yuelong.chen.btr@gmail.com>
ARG version=2.1.1
RUN mkdir -p /opt/tools
WORKDIR /opt/tools
# install stringtie
RUN \
apt update && apt install -y wget && \
wget -c http://ccb.jhu.edu/software/stringtie/dl/stringtie-${version}.Linux_x86_64.tar.gz && \
tar -zxvf stringtie-${version}.Linux_x86_64.tar.gz && \
cp stringtie-${version}.Linux_x86_64/stringtie /usr/local/bin && \
rm -rf stringtie* && \
apt-get remove --purge --yes \
wget && \
apt-get autoremove --purge --yes && \
apt-get clean
#!/bin/sh
# docker pull lbmc/stringtie:2.1.1
docker build src/.docker_modules/stringtie/2.1.0 -t 'lbmc/stringtie:2.1.1'
docker push lbmc/stringtie:2.1.1
docker buildx build --platform linux/amd64,linux/arm64 -t "lbmc/stringtie:2.1.1" --push src/.docker_modules/stringtie/2.1.1
\ No newline at end of file
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