add authentication

This commit is contained in:
2024-05-17 16:14:02 +02:00
parent cb6ae7c06d
commit 4c39fed29b
12 changed files with 111 additions and 4 deletions

View File

@@ -12,6 +12,7 @@ RUN python -m pip install --no-cache-dir --upgrade -r requirements.txt
COPY --chown=appuser:appuser marbas /app/marbas
COPY --chown=appuser:appuser sde /app/sde
COPY --chown=appuser:appuser api /app/api
COPY --chown=appuser:appuser authentication /app/authentication
USER appuser
CMD ["uvicorn", "marbas.asgi:application", "--host", "0.0.0.0", "--port", "8000"]