/ radicle / Dockerfile
Dockerfile
 1  FROM debian:bullseye
 2  
 3  RUN apt-get update && apt-get install -y curl git unzip && \
 4      curl -LO https://github.com/radicle-dev/radicle-cli/releases/download/v0.5.0/radicle-cli_0.5.0_amd64.deb && \
 5      apt install -y ./radicle-cli_0.5.0_amd64.deb && \
 6      rm radicle-cli_0.5.0_amd64.deb
 7  
 8  # Optional: verify it's installed
 9  RUN rad --version
10  
11  # Replace this:
12  # ENTRYPOINT ["rad"]
13  
14  # With this: (keeps container alive)
15  CMD ["tail", "-f", "/dev/null"]