add radicle images
This commit is contained in:
21
radicle-node/Dockerfile
Normal file
21
radicle-node/Dockerfile
Normal file
@@ -0,0 +1,21 @@
|
||||
FROM almalinux:10
|
||||
|
||||
RUN dnf install -y epel-release dnf-plugins-core \
|
||||
&& dnf update -y \
|
||||
&& dnf config-manager --enable crb \
|
||||
&& dnf clean all \
|
||||
&& rm -rf /var/cache/yum
|
||||
|
||||
RUN dnf install -y git npm \
|
||||
&& dnf clean all \
|
||||
&& rm -rf /var/cache/yum
|
||||
|
||||
ARG RADICLE_NODE_VERSION
|
||||
|
||||
RUN curl https://files.radicle.xyz/releases/latest/radicle-$RADICLE_NODE_VERSION-x86_64-unknown-linux-musl.tar.xz | tar -xvJf - --strip-components=1 -C /usr/local/
|
||||
|
||||
EXPOSE 9876
|
||||
|
||||
ENV RUST_BACKTRACE=1
|
||||
|
||||
CMD ["rad", "node", "start", "--foreground"]
|
||||
Reference in New Issue
Block a user