Skip to content

Commit

Permalink
download from stable release instead of clone
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-joe-wirth committed Oct 11, 2023
1 parent de7e97a commit b63cdec
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
# start with ubuntu base
FROM ubuntu:22.04

# install python3, blast, git, bowtie2, mummer, and cd-hit
# install python3, blast, wget, bowtie2, mummer, and cd-hit
RUN apt-get update && \
apt-get -y install python3.11 python3-pip python3-setuptools python3-dev
RUN apt-get -y install ncbi-blast+
RUN apt-get -y install git
RUN apt-get -y install wget
RUN apt-get -y install mummer
RUN apt-get -y install bowtie2
RUN apt-get -y install cd-hit
Expand All @@ -20,7 +20,10 @@ RUN pip3 install Bio
RUN pip3 install ariba

# clone repository
RUN git clone https://github.com/ncezid-biome/espwAlleleCaller.git
RUN wget https://github.com/ncezid-biome/espwAlleleCaller/archive/refs/tags/v1.0.0.tar.gz
RUN tar xzf v1.0.0.tar.gz
RUN rm v1.0.0.tar.gz
RUN mv /espwAlleleCaller-1.0.0 /espwAlleleCaller

# modify the executable so that it can be invoked directly from the command line
WORKDIR /espwAlleleCaller
Expand Down

0 comments on commit b63cdec

Please sign in to comment.