istio.io/istio@v0.0.0-20240520182934-d79c90f27776/tests/integration/security/fuzz/fuzzers/jwt_tool/Dockerfile (about)

     1  FROM python:3
     2  
     3  RUN git clone https://github.com/ticarpi/jwt_tool
     4  WORKDIR /jwt_tool
     5  COPY run.sh .
     6  COPY jwtconf.ini .
     7  COPY sample-RSA-private.pem .
     8  COPY sample-RSA-public.pem .
     9  RUN chmod +x ./run.sh && chmod +x jwt_tool.py && apt-get update && apt-get install --no-install-recommends -y python3-pip \
    10    && apt-get clean && rm -rf /var/lib/apt/lists/*
    11  RUN python3 -m pip install --no-cache-dir termcolor==1.1.0 cprint==1.2.2 pycryptodomex==3.10.1 requests==2.25.1
    12  CMD [ "sleep", "365d" ]