13 lines
373 B
Docker
13 lines
373 B
Docker
# Runtime only — binary built externally via cargo
|
|
FROM debian:bookworm-slim
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
ca-certificates libssl3 openssh-client procps git \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app
|
|
COPY target/x86_64-unknown-linux-gnu/release/git-hook /app/git-hook
|
|
|
|
ENV APP_LOG_LEVEL=info
|
|
ENTRYPOINT ["/app/git-hook"]
|