electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

Dockerfile (431B)


      1 FROM ubuntu:20.04@sha256:5747316366b8cc9e3021cd7286f42b2d6d81e3d743e2ab571f55bcd5df788cc8
      2 
      3 ENV LC_ALL=C.UTF-8 LANG=C.UTF-8
      4 ENV DEBIAN_FRONTEND=noninteractive
      5 
      6 RUN apt-get update -q && \
      7     apt-get install -qy \
      8         git \
      9         gettext \
     10         python3 \
     11         python3-pip \
     12         python3-setuptools \
     13         faketime \
     14         && \
     15     rm -rf /var/lib/apt/lists/* && \
     16     apt-get autoremove -y && \
     17     apt-get clean