mirror of
https://github.com/enix/x509-certificate-exporter.git
synced 2026-08-23 22:16:39 +00:00
11 lines
191 B
Docker
11 lines
191 B
Docker
FROM python:3.7
|
|
|
|
COPY requirements.txt ./
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY x509-exporter .
|
|
|
|
EXPOSE 9090
|
|
|
|
ENTRYPOINT [ "python", "./x509-exporter" ]
|
|
CMD ["--port=9090"] |