Files
sip/images/jump-host/Dockerfile
Drew Walters 9fcfae7107 Add custom Jump Host image
This change introduces a custom Jump Host image to include jq and the
DMTF Redfish tool. This will enable SIP to provide sub-cluster virtual
machine reboot capabilities.

Signed-off-by: Drew Walters <andrew.walters@att.com>
Change-Id: Ic38a13707a28ef7a7ea868d35b58df9b619c7b15
2021-02-18 19:00:51 +00:00

10 lines
209 B
Docker

ARG BASE_IMAGE=gcr.io/google-appengine/python
FROM ${BASE_IMAGE}
RUN apt-get update
RUN apt-get install -y --no-install-recommends jq
RUN pip3 install requests python-dateutil redfishtool
CMD ["/bin/bash"]