only log to console

This commit is contained in:
Sebastian Hugentobler 2023-08-30 19:59:23 +02:00
parent 996ba9de35
commit 87f787593d
Signed by untrusted user who does not match committer: shu
GPG Key ID: BB32CF3CA052C2F0

View File

@ -20,6 +20,7 @@ RUN tar xf $ARCHIVE -C /install --strip 1
WORKDIR /install
RUN sed '/mysqlclient/d' -i requirements.txt
RUN sed 's/scipy==1.8.1/scipy==1.11.2/g' -i requirements.txt
RUN sed 's/\(\["file_paperless\|\["file_mail\|\["file_celery\)/\["console/g' -i src/paperless/settings.py
RUN python3 -m venv env
RUN env/bin/pip3 install -r requirements.txt