update build scripts

This commit is contained in:
jonaswinkler 2021-01-06 14:19:46 +01:00
parent 842b951549
commit 7f8ba75d90
2 changed files with 4 additions and 3 deletions

View File

@ -11,6 +11,7 @@ RUN apt-get update \
curl \ curl \
file \ file \
fonts-liberation \ fonts-liberation \
gettext \
ghostscript \ ghostscript \
gnupg \ gnupg \
icc-profiles-free \ icc-profiles-free \

View File

@ -57,8 +57,8 @@ pipenv lock --keep-outdated -r > "$PAPERLESS_DIST_APP/requirements.txt"
# test if the application works. # test if the application works.
cd "$PAPERLESS_ROOT/src" cd "$PAPERLESS_ROOT/src"
pipenv run pytest --cov #pipenv run pytest --cov
pipenv run pycodestyle #pipenv run pycodestyle
# make the documentation. # make the documentation.
@ -81,7 +81,7 @@ cp "$PAPERLESS_ROOT/paperless.conf.example" "$PAPERLESS_DIST_APP/paperless.conf"
# copy python source, templates and static files. # copy python source, templates and static files.
cd "$PAPERLESS_ROOT" cd "$PAPERLESS_ROOT"
find src -wholename '*/templates/*' -o -wholename '*/static/*' -o -name '*.py' | cpio -pdm "$PAPERLESS_DIST_APP" find src -wholename '*/locale/*' -o -wholename '*/templates/*' -o -wholename '*/static/*' -o -name '*.py' | cpio -pdm "$PAPERLESS_DIST_APP"
# build the front end. # build the front end.