pinecrypt-gateway-ocsp-resp.../Dockerfile

9 lines
274 B
Docker
Raw Normal View History

2021-06-03 17:58:14 +00:00
FROM python
LABEL name="pinecrypt/ocsp-responder" \
version="rc" \
maintainer="Pinecrypt Labs <info@pinecrypt.com>"
RUN pip install asn1crypto motor oscrypto pytz sanic sanic_prometheus
ADD ocsp_responder.py /ocsp_responder.py
CMD /ocsp_responder.py
EXPOSE 5001