diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..bfef303 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM ubuntu:latest +WORKDIR /app +COPY . /app +RUN apt-get update && apt-get install -y \ + git \ + python3 \ + python3-pip +RUN git clone https://github.com/trezor/blockbook.git +WORKDIR /app/blockbook +