From 06f485551b9db3e23bee24935cda17f15808cf11 Mon Sep 17 00:00:00 2001 From: Kirill Pimenov Date: Mon, 4 Mar 2024 21:40:24 +0100 Subject: [PATCH] Added a (simplistic) Dockerfile --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..9403618 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM ubuntu:latest +RUN mkdir /app +COPY target/release/kalatori /app/kalatori + +ENV KALATORI_HOST="0.0.0.0:16726" +ENV KALATORI_RPC="wss://rpc.ibp.network/polkadot" + +WORKDIR /app +EXPOSE 16726 + +CMD ["./kalatori"]