blockbook-docker/Dockerfile
2023-09-01 13:00:34 +05:30

11 lines
215 B
Docker

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