/ .buildbot / winebuild / Dockerfile
Dockerfile
 1  FROM ubuntu:bionic
 2  
 3  ENV DEBIAN_FRONTEND=noninteractive
 4  
 5  RUN dpkg --add-architecture i386
 6  
 7  RUN apt-get update
 8  
 9  RUN apt-get install -yq --no-install-suggests --no-install-recommends \
10      software-properties-common build-essential libcap-dev libffi-dev \
11      libssl-dev python-all-dev python-setuptools xvfb \
12      mingw-w64 wine-stable winetricks wine32 wine64
13  
14  ADD . .