We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cb0854 commit 8d5db64Copy full SHA for 8d5db64
2 files changed
Dockerfile
@@ -12,10 +12,14 @@ RUN cargo build --release --locked
12
FROM debian:bookworm-slim AS runtime
13
14
RUN apt-get update \
15
- && apt-get install -y --no-install-recommends hmmer ca-certificates \
+ && apt-get install -y --no-install-recommends hmmer ca-certificates python3 \
16
&& rm -rf /var/lib/apt/lists/*
17
18
COPY --from=builder /app/target/release/itsxrust /usr/local/bin/itsxrust
19
20
+# Bundle HMM profiles for standalone use
21
+# Default lookup path: /usr/local/share/itsxrust/hmm/F.hmm
22
+COPY data/hmm/ /usr/local/share/itsxrust/hmm/
23
+
24
ENTRYPOINT ["itsxrust"]
25
CMD ["--help"]
0 commit comments