CentOS 6.10 installed with VMware VIB Author Utility
10K+
This image uses CentOS 6.10 and includes Python 2.6 which is required to run VMware's VIB Author Fling Utility to create ESXi VIBs for ESXi 5.x, 6.x & 7.x
FROM centos:6.10
# Working directory
WORKDIR /root
# Comment out Mirror Url
RUN sed -i 's/^m/#m/g' /etc/yum.repos.d/CentOS-Base.repo
# Uncomment Base URL
RUN sed -i 's/#b/b/g' /etc/yum.repos.d/CentOS-Base.repo
# Update URL to point to archive vault URL
RUN sed -i 's/mirror.centos.org/vault.centos.org/g' /etc/yum.repos.d/CentOS-Base.repo
# Download required packages
RUN yum -y install tar openssl python-lxml glibc.i686 git file
# Download VIB Author RPM
RUN curl -O http://download3.vmware.com/software/vmw-tools/vibauthor/vmware-esx-vib-author-5.0.0-0.0.847598.i386.rpm
# Install VIB Author
RUN rpm -ivh vmware-esx-vib-author-5.0.0-0.0.847598.i386.rpm
CMD ["/bin/bash"]
Content type
Image
Digest
sha256:4d5001c38…
Size
187.3 MB
Last updated
over 5 years ago
docker pull lamw/vibauthor