Install and start i2pd in buildbot

This commit is contained in:
Lee Miller 2022-09-23 04:17:38 +03:00
parent 7113916347
commit 0584956d13
Signed by untrusted user: lee.miller
GPG Key ID: 4F97A5EA88F4AB63
2 changed files with 11 additions and 1 deletions

View File

@ -2,8 +2,15 @@ FROM ubuntu:focal
RUN apt-get update
RUN apt-get install -yq software-properties-common
RUN apt-add-repository ppa:purplei2p/i2pd
RUN apt-get update
RUN apt-get install -yq --no-install-suggests --no-install-recommends \
python3-dev python3-pip python3.9 python3.9-dev python3.9-venv
python3-dev python3-pip python3.9 python3.9-dev python3.9-venv sudo i2pd
RUN echo 'builder ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
RUN python3.9 -m pip install setuptools wheel
RUN python3.9 -m pip install --upgrade pip tox virtualenv

3
.buildbot/ubuntu/build.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
sudo service i2pd start