From aae8456c06ce2b2a2409e8eda82cd8b5cd1b71cb Mon Sep 17 00:00:00 2001 From: Laurent Modolo <laurent.modolo@ens-lyon.fr> Date: Tue, 18 Apr 2023 14:43:39 +0200 Subject: [PATCH] create kmc dockerfile --- src/kmc/Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/kmc/Dockerfile diff --git a/src/kmc/Dockerfile b/src/kmc/Dockerfile new file mode 100644 index 0000000..1202c9a --- /dev/null +++ b/src/kmc/Dockerfile @@ -0,0 +1,11 @@ +FROM alpine:3.17 AS build + +RUN apk add --no-cache git musl-dev pkgconfig openssl-dev zlib-ng cmake gcc make g++ zlib-dev py3-pybind11-dev \ + && git clone --recurse-submodules https://github.com/refresh-bio/kmc.git \ + && cd kmc \ + && make + +FROM alpine:3.17 + +COPY --from=build /kmc/bin/* /usr/bin/ +RUN apk add --no-cache procps bash -- GitLab