FROM python:3.12-alpine
WORKDIR /app
RUN pip install --no-cache-dir 'PyJWT[crypto]==2.9.0'
COPY server.py .
EXPOSE 7002
CMD ["python", "server.py"]