fix ak test-all dependencies

Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
This commit is contained in:
Marc 'risson' Schmitt 2023-09-11 13:36:54 +02:00 committed by risson
parent 61bdbf243a
commit a7a4b18082
2 changed files with 4 additions and 2 deletions

View File

@ -145,7 +145,9 @@ USER 1000
ENV TMPDIR=/dev/shm/ \
PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
PATH="/venv/bin:$PATH"
PATH="/venv/bin:$PATH" \
VENV_PATH="/venv" \
POETRY_VIRTUALENVS_CREATE=false
HEALTHCHECK --interval=30s --timeout=30s --start-period=60s --retries=3 CMD [ "/lifecycle/ak", "healthcheck" ]

View File

@ -55,7 +55,7 @@ function cleanup {
}
function prepare_debug {
pip install --no-cache-dir -r /requirements-dev.txt
poetry install --no-ansi --no-interaction
touch /unittest.xml
chown authentik:authentik /unittest.xml
}