Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions bamliquidator_internal/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,12 @@ RUN make -j6

FROM ubuntu:bionic as runner

RUN apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends python3 \
python3-tables python3-scipy \
RUN apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends python \
python-setuptools python-pip python-tables python-scipy \
&& rm -rf /var/lib/apt/lists/*

RUN pip install bokeh==0.9.3 "openpyxl>=1.6.1,<2.0.0"

WORKDIR /opt/liquidator
COPY --from=builder /usr/lib/x86_64-linux-gnu/libtcmalloc_minimal.so.4 \
/usr/lib/x86_64-linux-gnu/libtbb.so.2 \
Expand Down Expand Up @@ -55,9 +57,10 @@ COPY --from=builder /opt/liquidator/bamliquidatorbatch /opt/liquidator/bamliquid

ENV PATH="$PATH:/opt/liquidator"

RUN python3 bamliquidatorbatch/test.py
RUN python bamliquidatorbatch/test.py
RUN chmod +rx /opt/liquidator/bamliquidatorbatch/*.py

ARG GIT_COMMIT
LABEL git_commit=$GIT_COMMIT

ENTRYPOINT ["/usr/bin/python3","/opt/liquidator/bamliquidatorbatch/bamliquidator_batch.py"]
ENTRYPOINT ["/usr/bin/python","/opt/liquidator/bamliquidatorbatch/bamliquidator_batch.py"]
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from os.path import basename
from os.path import dirname

__version__ = '1.5.1'
__version__ = '1.5.3'

default_black_list = ["chrUn", "_random", "Zv9_", "_hap"]

Expand Down