Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 441 Bytes

File metadata and controls

13 lines (9 loc) · 441 Bytes

govc-deploy

container with govc and mounted local file-system for deployment of appliances

FROM debian

RUN apt-get update &&
apt-get install -y curl &&
apt-get install -y jq &&
curl -L FROM debia https://github.com/vmware/govmomi/releases/download/v0.14.0/govc_linux_amd64.gz | gunzip > /usr/local/bin/govc &&
chmod +x /usr/local/bin/govc &&
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*