Skip to content

Commit

Permalink
Merge pull request #15 from Alzymologist/kirushik/docker
Browse files Browse the repository at this point in the history
build: added a (simplistic) Dockerfile
  • Loading branch information
kirushik authored Mar 5, 2024
2 parents c5f1cd7 + 06f4855 commit cdb7ede
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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"]

0 comments on commit cdb7ede

Please sign in to comment.