fix(docker): remove update and build steps from poetry

`install` includes dependencies present in poetry.lock
and we must stick to them if we wish to pin dependencies.

Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
Kevin Morris 2021-11-24 20:33:42 -08:00
parent bc1cf8b1f6
commit 67a6b8360e
No known key found for this signature in database
GPG key ID: F7E46DED420788F3

View file

@ -6,8 +6,6 @@ pip install --upgrade pip
# Install the aurweb package and deps system-wide via poetry. # Install the aurweb package and deps system-wide via poetry.
poetry config virtualenvs.create false poetry config virtualenvs.create false
poetry update
poetry build
poetry install --no-interaction --no-ansi poetry install --no-interaction --no-ansi
exec "$@" exec "$@"