aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitlab-ci.yml4
-rw-r--r--Dockerfile1
2 files changed, 2 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9ba7d7b..a8c0737 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -23,8 +23,6 @@ build-gnunet-python:
23 image: gnunet-python:latest 23 image: gnunet-python:latest
24 only: 24 only:
25 - master 25 - master
26 install:
27 - apt-get install -y python3-pip python-gi python-gi-cairo python3-gi python3-gi-cairo gir1.2-gtk-3.0 python-dbus python3-flake8
28 - pip3 install --no-deps .
29 script: 26 script:
27 - pip3 install --no-deps .
30 - flake8 . 28 - flake8 .
diff --git a/Dockerfile b/Dockerfile
index 41333d6..b3cffd2 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -2,5 +2,6 @@ from 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
5RUN apt-get install -y python3-pip python-gi python-gi-cairo python3-gi python3-gi-cairo gir1.2-gtk-3.0 python-dbus python3-flake8
5 6
6# TODO: python2.7 image 7# TODO: python2.7 image