support bearer token validation for get/report

This commit is contained in:
Jack Case
2025-10-25 12:24:14 +00:00
parent a80ca5e37d
commit ba4ea2d717
3 changed files with 54 additions and 12 deletions

View File

@@ -3,4 +3,8 @@ FROM python:3.12
COPY slopserver/ requirements.txt /slopserver/
WORKDIR /slopserver/
RUN python3 -m pip install -r requirements.txt
RUN python3 -m pip install -r requirements.txt
EXPOSE 8000
ENTRYPOINT [ "fastapi", "run", "--workers", "4", "/slopserver/server.py" ]