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"]