Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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