From 69408faf8cb7d43ec9e308f288cbf93d5025e252 Mon Sep 17 00:00:00 2001 From: DLBPointon Date: Thu, 13 Nov 2025 14:40:17 +0000 Subject: [PATCH] procps was in the builder not the runner --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3d5ec38..5edc2dd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ COPY . . ENV CARGO_TARGET_DIR=/usr/local/kmer-counter RUN apt-get update && \ - apt-get install -y musl-tools pkg-config libssl-dev procps && \ + apt-get install -y musl-tools pkg-config libssl-dev && \ rustup target add x86_64-unknown-linux-musl RUN rustup target add x86_64-unknown-linux-musl @@ -24,6 +24,7 @@ LABEL maintainer=dp24@sanger.ac.uk LABEL org.opencontainers.image.licenses="MIT" -RUN echo $PWD +RUN apt-get update && \ + apt-get install -y procps COPY --from=build /usr/local/kmer-counter/x86_64-unknown-linux-musl/release/kmer-counter /usr/local/bin/kmer-counter