-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docker: Install only the same apt packages as in GHA CI
Use --break-system-packages as required (sort of) by Py3.11+
- Loading branch information
Showing
1 changed file
with
5 additions
and
12 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 |
---|---|---|
|
@@ -4,23 +4,16 @@ MAINTAINER Eric Talevich <[email protected]> | |
ENV DEBIAN_FRONTEND noninteractive | ||
RUN apt-get update && apt-get install -y \ | ||
liblzma-dev \ | ||
python3-biopython \ | ||
python3-dev \ | ||
python3-matplotlib \ | ||
python3-numpy \ | ||
python3-pip \ | ||
python3-reportlab \ | ||
python3-scipy \ | ||
python3-pandas \ | ||
python3-tk \ | ||
r-base-core \ | ||
r-bioc-dnacopy \ | ||
zlib1g-dev | ||
zlib1g-dev \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN pip3 install -U pip | ||
RUN pip3 install cnvkit==0.9.10 | ||
RUN pip3 install --upgrade pip --break-system-packages && \ | ||
pip3 install cnvkit==0.9.10 --break-system-packages && \ | ||
pip3 cache purge | ||
# Let matplotlib build its font cache | ||
#RUN head `which cnvkit.py` | ||
RUN cnvkit.py version | ||
|
||
## USER CONFIGURATION, containers should not run as root | ||
|