Skip to content

Commit

Permalink
Add build-essential dependency to Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
adamd3 committed Mar 26, 2024
1 parent c455157 commit 66ba5be
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,13 @@ ADD https://raw.githubusercontent.com/adamd3/OrthoQuant/main/requirements.txt .
COPY requirements.txt /tmp
WORKDIR /tmp


RUN apt-get update && \
apt-get install -y --no-install-recommends ca-certificates \
curl libssl-dev libcurl4-openssl-dev libxml2-dev \
python3-numpy python3-pip gawk pigz r-base-dev fastqc \
trim-galore kallisto && \
build-essential \
curl libssl-dev libcurl4-openssl-dev libxml2-dev \
python3-numpy python3-pip gawk pigz r-base-dev fastqc \
trim-galore kallisto && \
apt-get clean autoclean

RUN pip install --no-cache-dir -r requirements.txt
Expand Down

0 comments on commit 66ba5be

Please sign in to comment.