FROM ubuntu:24.04 RUN apt-get update && apt-get install -y --no-install-recommends \ ca-certificates libssl3 git \ && rm -rf /var/lib/apt/lists/* RUN git config --system --add safe.directory '*' WORKDIR /app COPY ./target/release/git-hook /bin EXPOSE 8083 CMD ["git-hook"]