From b173afa2abced0b7de536a3dcb865a3306f57777 Mon Sep 17 00:00:00 2001 From: KrKOo Date: Thu, 27 Jun 2024 12:40:40 +0200 Subject: [PATCH] Install required packages in dockerfiles --- Dockerfile | 2 +- Dockerfile.dind | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 09f31f86..3b5496c4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN --mount=type=cache,target=/root/.cache/go-build make build # final stage FROM debian -RUN apt-get update && apt-get install -y --no-install-recommends curl python3-pip && pip3 install htsget --break-system-packages && rm -rf ~/.cache +RUN apt-get update && apt-get install -y --no-install-recommends curl python3-pip && pip3 install htsget crypt4gh --break-system-packages && rm -rf ~/.cache WORKDIR /opt/funnel VOLUME /opt/funnel/funnel-work-dir EXPOSE 8000 9090 diff --git a/Dockerfile.dind b/Dockerfile.dind index 586bc060..e3f92065 100644 --- a/Dockerfile.dind +++ b/Dockerfile.dind @@ -11,7 +11,8 @@ COPY . . RUN --mount=type=cache,target=/root/.cache/go-build make build # final stage -FROM docker:stable-dind +FROM docker:dind +RUN apk add --update --no-cache curl python3 py3-pip && pip3 install htsget crypt4gh --break-system-packages WORKDIR /opt/funnel VOLUME /opt/funnel/funnel-work-dir EXPOSE 8000 9090