Add local production infra lab

This commit is contained in:
thanhnv
2026-07-06 12:00:27 +09:00
parent ec261bcbc5
commit fc736aabf1
16 changed files with 623 additions and 23 deletions
@@ -0,0 +1,7 @@
FROM python:3.12-slim
RUN pip install --no-cache-dir "pyjwt[crypto]==2.10.1"
WORKDIR /app
COPY mock_idp.py /app/mock_idp.py
EXPOSE 8080
CMD ["python", "/app/mock_idp.py"]