From ed9f93a2d6b16f4c698c9efd56d5c8f502748af9 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Sun, 29 Jan 2023 02:39:27 +0100 Subject: [PATCH] Add cli to package installs (#4274) * Add cli to package installs adds an optional call to the command line to run invoke commands easiert * Add libffi7 needed for ffi / cli operations --- .pkgr.yml | 1 + Procfile | 1 + 2 files changed, 2 insertions(+) diff --git a/.pkgr.yml b/.pkgr.yml index 51420715d2..1a59baffe6 100644 --- a/.pkgr.yml +++ b/.pkgr.yml @@ -29,6 +29,7 @@ dependencies: - gettext - nginx - jq + - libffi7 targets: ubuntu-20.04: true debian-11: true diff --git a/Procfile b/Procfile index d1a313b067..97f089b4be 100644 --- a/Procfile +++ b/Procfile @@ -1,2 +1,3 @@ web: env/bin/gunicorn --chdir $APP_HOME/InvenTree -c InvenTree/gunicorn.conf.py InvenTree.wsgi -b 0.0.0.0:$PORT worker: env/bin/python InvenTree/manage.py qcluster +cli: env/bin/python -m invoke