From 7abdbdde4a8c034565c751890bf45c9eb2e819d7 Mon Sep 17 00:00:00 2001 From: Richard Bowman Date: Thu, 6 Apr 2023 21:27:51 +0100 Subject: [PATCH] Add full list of server prerequisites The server needs various packages installed on the system. This list is lifted from the SD card builder repository. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2eca4a4c..570113ae 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,7 +11,7 @@ stages: retry: 1 before_script: - apt-get update - - apt-get install python3 python3-pip python3-venv libxslt1.1 + - apt-get install apt-utils curl wget python3 python3-pip python3-venv raspi-gpio libgfortran3 libatlas3-base libffi-dev vim git-lfs libtiff5 libpango-1.0-0 libavcodec58 libgdk-pixbuf2.0-0 libjasper1 libswscale5 libpangocairo-1.0-0 libilmbase23 libatk1.0-0 libgtk-3-0 libwebp6 libcairo2 libavutil56 libcairo-gobject2 libopenexr23 libavformat58 libxslt1.1 - python3 -m venv .venv # NB this does not overwrite an existing cached venv - source .venv/bin/activate - pip install pipenv # Should be cached after first run