aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2017-12-01 22:17:30 +0000
committerng0 <ng0@n0.is>2017-12-01 22:17:30 +0000
commit1322c90b5fb2a1a8a44bed7406db737a99c598dc (patch)
tree9a1ceb134557288de3bf4259c2b8c972dc60d06e
parent68cf6f599bf096d5e296082dff609c4c1fcbc979 (diff)
downloadgnunet-python-1322c90b5fb2a1a8a44bed7406db737a99c598dc.tar.gz
gnunet-python-1322c90b5fb2a1a8a44bed7406db737a99c598dc.zip
ci: fix
-rw-r--r--.gitlab-ci.yml5
-rw-r--r--Dockerfile4
2 files changed, 4 insertions, 5 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index af2008a..293eb74 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -23,7 +23,4 @@ build-gnunet-python:
23 image: gnunet-python:latest 23 image: gnunet-python:latest
24 only: 24 only:
25 - master 25 - master
26 install: 26 script: python setup.py
27 - pip install dbus
28 - pip install PyGObject
29script: python setup.py
diff --git a/Dockerfile b/Dockerfile
index 41333d6..771ead5 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,8 @@
1from debian:stretch 1from debian:stretch
2 2
3# Install build tools 3# Install build tools
4RUN apt-get update && apt-get install -y git make automake autopoint autoconf python3 4RUN apt-get update && apt-get install -y git make automake autopoint autoconf python3 python3-pip
5 5
6RUN pip install dbus
7RUN pip install PyGObject
6# TODO: python2.7 image 8# TODO: python2.7 image