Skip to content

Commit

Permalink
fix dockerfile
Browse files Browse the repository at this point in the history
there is some problem with ubuntu docker and biopython installation with
pip
so install biopython via apt-get
  • Loading branch information
bneron committed May 2, 2022
1 parent a6782f0 commit 25fa0a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/Dockerfile.2.0.2
Expand Up @@ -12,7 +12,7 @@ LABEL publications="https://doi.org/10.3390/microorganisms10040700"
ARG DEBIAN_FRONTEND=noninteractive

RUN apt-get update -y &&\
apt-get install -y --no-install-recommends python3 python3-pip git hmmer infernal prodigal &&\
apt-get install -y --no-install-recommends python3 python3-pip hmmer infernal prodigal python3-biopython &&\
apt-get clean -y

RUN pip3 install integron_finder==2.0.2
Expand Down

0 comments on commit 25fa0a6

Please sign in to comment.