Skip to content

Instantly share code, notes, and snippets.

@IsmailM
Last active December 2, 2021 09:37
Show Gist options
  • Save IsmailM/f3916f7ad4ca24d4f3c7d52365383cde to your computer and use it in GitHub Desktop.
Save IsmailM/f3916f7ad4ca24d4f3c7d52365383cde to your computer and use it in GitHub Desktop.
GV docker file
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