fasterp 0.2.1

High-performance FASTQ preprocessing tool - often faster than fastp with the same interface
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Build stage
FROM rust:alpine AS builder

RUN apk add --no-cache musl-dev pkgconfig openssl-dev openssl-libs-static cmake make g++ perl linux-headers

WORKDIR /app
COPY Cargo.toml Cargo.lock ./
COPY src ./src

RUN cargo build --release

# Runtime stage - bare metal
FROM scratch

COPY --from=builder /app/target/release/fasterp /fasterp

ENTRYPOINT ["/fasterp"]