actually use fastapi lifetime manager to setup logging
Some checks failed
Run testing on the backend code / Build (pull_request) Has been cancelled
Run linting on the backend code / Build (pull_request) Has been cancelled
Build and deploy the backend to staging / Deploy to staging (pull_request) Has been cancelled
Build and deploy the backend to staging / Build and push image (pull_request) Has been cancelled

This commit is contained in:
2024-12-29 14:45:41 +01:00
parent bc63b57154
commit 4e07c10969
8 changed files with 88 additions and 127 deletions

View File

@@ -7,7 +7,6 @@ RUN pip install pipenv
RUN pipenv install --deploy --system
COPY src src
COPY launcher.py .
EXPOSE 8000
@@ -17,4 +16,4 @@ ENV OSM_CACHE_DIR=/cache
ENV MEMCACHED_HOST_PATH=none
ENV LOKI_URL=none
CMD ["python", "launcher.py"]
CMD ["fastapi", "src/main.py", "--port", "8000", "--workers", "$NUM_WORKERS"]