inital commit
This commit is contained in:
commit
0978b41afd
20 changed files with 392 additions and 0 deletions
15
radicle/Dockerfile
Normal file
15
radicle/Dockerfile
Normal file
|
@ -0,0 +1,15 @@
|
|||
FROM debian:bullseye
|
||||
|
||||
RUN apt-get update && apt-get install -y curl git unzip && \
|
||||
curl -LO https://github.com/radicle-dev/radicle-cli/releases/download/v0.5.0/radicle-cli_0.5.0_amd64.deb && \
|
||||
apt install -y ./radicle-cli_0.5.0_amd64.deb && \
|
||||
rm radicle-cli_0.5.0_amd64.deb
|
||||
|
||||
# Optional: verify it's installed
|
||||
RUN rad --version
|
||||
|
||||
# Replace this:
|
||||
# ENTRYPOINT ["rad"]
|
||||
|
||||
# With this: (keeps container alive)
|
||||
CMD ["tail", "-f", "/dev/null"]
|
Loading…
Add table
Add a link
Reference in a new issue