URI: 
       tDockerfile - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
       tDockerfile (1948B)
       ---
            1 FROM ubuntu:20.04@sha256:c95a8e48bf88e9849f3e0f723d9f49fa12c5a00cfc6e60d2bc99d87555295e4c
            2 
            3 ENV LC_ALL=C.UTF-8 LANG=C.UTF-8
            4 ENV DEBIAN_FRONTEND=noninteractive
            5 
            6 RUN dpkg --add-architecture i386 && \
            7     apt-get update -q && \
            8     apt-get install -qy \
            9         wget=1.20.3-1ubuntu1 \
           10         gnupg2=2.2.19-3ubuntu2.1 \
           11         dirmngr=2.2.19-3ubuntu2.1 \
           12         python3-software-properties=0.98.9.2 \
           13         software-properties-common=0.98.9.2 \
           14         && \
           15     rm -rf /var/lib/apt/lists/* && \
           16     apt-get autoremove -y && \
           17     apt-get clean
           18 
           19 RUN apt-get update -q && \
           20     apt-get install -qy \
           21         git=1:2.25.1-1ubuntu3 \
           22         p7zip-full=16.02+dfsg-7build1 \
           23         make=4.2.1-1.2 \
           24         mingw-w64=7.0.0-2 \
           25         mingw-w64-tools=7.0.0-2 \
           26         win-iconv-mingw-w64-dev=0.0.8-3 \
           27         autotools-dev=20180224.1 \
           28         autoconf=2.69-11.1 \
           29         autopoint=0.19.8.1-10build1 \
           30         libtool=2.4.6-14 \
           31         gettext=0.19.8.1-10build1 \
           32         && \
           33     rm -rf /var/lib/apt/lists/* && \
           34     apt-get autoremove -y && \
           35     apt-get clean
           36 
           37 RUN wget -nc https://dl.winehq.org/wine-builds/Release.key && \
           38         echo "c51bcb8cc4a12abfbd7c7660eaf90f49674d15e222c262f27e6c96429111b822 Release.key" | sha256sum -c - && \
           39         apt-key add Release.key && \
           40         rm Release.key && \
           41     wget -nc https://dl.winehq.org/wine-builds/winehq.key && \
           42         echo "78b185fabdb323971d13bd329fefc8038e08559aa51c4996de18db0639a51df6 winehq.key" | sha256sum -c - && \
           43         apt-key add winehq.key && \
           44         rm winehq.key && \
           45     apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/ && \
           46     apt-get update -q && \
           47     apt-get install -qy \
           48         wine-stable-amd64:amd64=6.0.0~focal-1 \
           49         wine-stable-i386:i386=6.0.0~focal-1 \
           50         wine-stable:amd64=6.0.0~focal-1 \
           51         winehq-stable:amd64=6.0.0~focal-1 \
           52         && \
           53     rm -rf /var/lib/apt/lists/* && \
           54     apt-get autoremove -y && \
           55     apt-get clean