From 9b9893d0a5204a0a3b15e5b4ef98e7673e4694ea Mon Sep 17 00:00:00 2001 From: sahaj05 <135546365+sahaj05@users.noreply.github.com> Date: Fri, 1 Sep 2023 13:00:34 +0530 Subject: [PATCH] Add files via upload --- Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Dockerfile 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 +