Skip to content

Commit

Permalink
✨ add docke reciepe to build 2.0.2 docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
bneron committed May 2, 2022
1 parent 14fb8b9 commit a6782f0
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions docker/Dockerfile.2.0.2
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
FROM ubuntu:jammy

LABEL maintainer="Bertrand Neron"
LABEL maintainer.email="[email protected]"
LABEL authors="Néron, B.; Littner, E.; Haudiquet, M.; Perrin, A.; Cury, J.; Rocha, E.P.C."
LABEL package.version="2.0.2"
LABEL package.license="GPLv3"
LABEL package.homepage="https://github.com/gem-pasteur/Integron_Finder/"
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 clean -y

RUN pip3 install integron_finder==2.0.2

ENV DEBIAN_FRONTEND=teletype
ENV PYTHONIOENCODING=UTF-8
ENV MPLCONFIGDIR=/home/IF

RUN useradd -m IF
USER IF
WORKDIR /home/IF


ENTRYPOINT ["/usr/local/bin/integron_finder"]

CMD ['-h']

0 comments on commit a6782f0

Please sign in to comment.