git-remote-iroh 0.2.0

Git remote protocol support for https://www.iroh.computer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM docker.io/library/rust:1.96-slim-trixie

ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update -qq && \
  apt-get dist-upgrade -y &&\
  apt-get install -y curl ca-certificates build-essential git

WORKDIR /src
COPY . .

RUN cargo install --path .

VOLUME /repo
VOLUME /root/.git-remote-iroh

ENTRYPOINT ["/usr/local/cargo/bin/git-remote-iroh"]