Skip to content

Commit

Permalink
Dockerfile added
Browse files Browse the repository at this point in the history
  • Loading branch information
philres committed Jan 18, 2017
1 parent 1eb2d45 commit a7c68d8
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docker/ngmlr/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM alpine

MAINTAINER Philipp Rescheneder <philipp.rescheneder@gmail.com>

# Install curl
RUN apk --update upgrade && \
apk add curl ca-certificates && \
update-ca-certificates && \
rm -rf /var/cache/apk/*

# Get most recent ngmlr version from github
RUN curl -L `curl -s https://api.github.com/repos/philres/ngmlr/releases | grep browser_download_url | head -n 1 | cut -d '"' -f 4` | tar xz && cp ./ngmlr-*/ngmlr /bin/ && rm -rf ngmlr-*

0 comments on commit a7c68d8

Please sign in to comment.