forked from pha4ge/hAMRonization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
29 lines (23 loc) · 850 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# base image
FROM python:3.9
# metadata
LABEL base.image="pathon:3.9"
LABEL software="hAMRonization"
ARG SOFTWARE_VERSION=unspecified
LABEL software_version=$SOFTWARE_VERSION
LABEL description="Tool to identify resistance genes using the CARD database"
LABEL website="https://github.com/pha4ge/hAMRonization"
LABEL documentation="https://github.com/pha4ge/hAMRonization/blob/master/README.md"
LABEL license="https://github.com/pha4ge/hAMRonization/blob/master/LICENSE.txt"
LABEL tags="Genomics"
# maintainer
MAINTAINER Finlay Maguire <[email protected]>
# set the working directory in the container
WORKDIR /hAMRonization
# copy the dependencies file to the working directory
COPY . /hAMRonization
# install dependencies
RUN python -m pip install hAMRonization
# command to run on container start
ENTRYPOINT ["hamronize"]
CMD ["--help"]