Skip to content

Commit

Permalink
Updates to docker
Browse files Browse the repository at this point in the history
  • Loading branch information
bbimber committed Nov 26, 2024
1 parent 026c03e commit cbaa1bf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions containers/paragraph/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:24.04
FROM ubuntu:22.04

ENV DEBIAN_FRONTEND=noninteractive

Expand All @@ -16,6 +16,7 @@ RUN apt-get -qq update && apt-get install -yq \
libboost-all-dev \
m4 \
python3-full \
python3-pip \
zlib1g-dev \
libbz2-dev && \
apt-get clean -y && \
Expand All @@ -27,7 +28,7 @@ RUN mkdir -p /opt/ \
&& cd /opt \
&& git clone https://github.com/Illumina/paragraph.git \
&& mv paragraph paragraph-source \
&& pip3 install -r /opt/paragraph-source/requirements.txt \
&& pip3 install --user -r /opt/paragraph-source/requirements.txt \
&& mkdir /opt/paragraph-build

WORKDIR /opt/paragraph-build
Expand Down

0 comments on commit cbaa1bf

Please sign in to comment.