Zion Boggan
repos/JWT Differential Fuzzer/targets/pyjwt/Dockerfile
zionboggan.com ↗
6 lines · text
History for this file →
1
FROM python:3.12-alpine
2
WORKDIR /app
3
RUN pip install --no-cache-dir 'PyJWT[crypto]==2.9.0'
4
COPY server.py .
5
EXPOSE 7002
6
CMD ["python", "server.py"]