Install git so that we can install git based extra-deps

This commit is contained in:
Timothy Hobbs 2023-10-23 12:47:25 +02:00
parent 90c9b3311e
commit 13bae827e9

View File

@ -4,7 +4,8 @@ RUN apt-get update
RUN apt-get install -yqq \
postgresql-common \
postgresql-client \
cron
cron \
git
COPY requirements.txt /opt/django-helpdesk/requirements.txt
COPY standalone/extra-requirements.txt /opt/django-helpdesk/standalone/extra-requirements.txt
RUN pip3 install -r /opt/django-helpdesk/requirements.txt