Last active
December 2, 2021 09:37
-
-
Save IsmailM/f3916f7ad4ca24d4f3c7d52365383cde to your computer and use it in GitHub Desktop.
GV docker file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:latest | |
RUN apt update && apt install -y --no-install-recommends curl ca-certificates | |
# Latest version can be determined by running: | |
# curl -ksL https://api.github.com/repos/wurmlab/genevalidator/releases/latest | grep browser_download_url | grep -i linux | cut -d '"' -f 4 | |
ENV DOWNLOAD_URL https://github.com/wurmlab/genevalidator/releases/download/2.1.11/genevalidator-2.1.11-linux-x86_64.tar.gz | |
WORKDIR /GV | |
RUN curl -kSL ${DOWNLOAD_URL} | tar zxf - -C /GV --strip-components 1 && rm -r /GV/blast_db | |
ENV PATH="/GV/bin:${PATH}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment