This repository has been archived on 2024-08-21. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2024-08-21/.buildbot/kivy/Dockerfile

21 lines
578 B
Docker

# A container for buildbot
FROM ubuntu:bionic AS kivy
# FROM ubuntu:20.04 AS buildbot-bionic
RUN apt-get update
RUN apt-get -y install sudo
RUN apt-get install -yq python-setuptools \
python-setuptools libssl-dev libpq-dev python-prctl python-dev \
python-dev python-virtualenv python-pip virtualenv \
libssl-dev \
python-dev \
python3-virtualenv \
python3-pip \
wget
RUN wget -O /usr/local/bin/travis2bash.sh https://git.bitmessage.org/Bitmessage/buildbot-scripts/raw/branch/master/travis2bash.sh
RUN chmod a+rx "/usr/local/bin/travis2bash.sh"