diff --git a/ci/Dockerfile b/ci/Dockerfile index fd57b3d8..9a555c85 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -3,6 +3,7 @@ FROM fedora:28 RUN useradd -M -l -u 3000018 jenkins RUN dnf install -y \ gcc \ + git \ libjpeg-devel \ openssh-clients \ python3-devel \ diff --git a/ci/build.sh b/ci/build.sh index cb51e03d..efa46a79 100644 --- a/ci/build.sh +++ b/ci/build.sh @@ -3,6 +3,6 @@ python3.6 -m venv .venv rm -rf dist .venv/bin/pip install --upgrade pip setuptools wheel -.venv/bin/pip wheel -w dist -r requirements.txt +.venv/bin/pip wheel -w dist -r requirements.txt . sed -i '/^-i/d' requirements.txt