-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ add docke reciepe to build 2.0.2 docker image
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
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'] |