-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed the docker for bug on platform
- Loading branch information
1 parent
ba522c6
commit 2223fa2
Showing
2 changed files
with
24 additions
and
1 deletion.
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,23 @@ | ||
FROM continuumio/miniconda3@sha256:77f9119def83d94b7afb654b39a1c21aaa7f255518aba57de08321760c27c86a | ||
|
||
ENV VERSION="1.6.6-py_2" | ||
|
||
ARG ENV_NAME="ped-parser" | ||
|
||
LABEL description="Docker containing the ped_parser python package." \ | ||
software.version="${VERSION}" \ | ||
maintainer="Leila Mansouri: leila.mansouri@lifebit.ai" \ | ||
name="quay.io/lifebitaiorg/ped_parser:1.6.6-py_2" | ||
|
||
#needed as per the documentation | ||
RUN apt-get update -y &&\ | ||
apt-get install -y procps \ | ||
zlib1g &&\ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
#installing the tool and its dependencies | ||
RUN pip install ped_parser | ||
|
||
RUN pip install pandas | ||
|
||
ENTRYPOINT [ ] |
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