mirror of
https://github.com/smallstep/certificates.git
synced 2024-11-03 23:15:28 +00:00
10 lines
171 B
Docker
10 lines
171 B
Docker
FROM python:alpine
|
|
|
|
RUN mkdir /src
|
|
|
|
ADD client.py /src
|
|
ADD client.requirements.txt /src
|
|
RUN pip3 install -r /src/client.requirements.txt
|
|
|
|
CMD ["python", "/src/client.py"]
|