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
10 lines
209 B
Docker
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"]
|