-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContainerfile
28 lines (18 loc) · 1.37 KB
/
Containerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM registry.fedoraproject.org/fedora-minimal:latest
LABEL summary="Open Virtual Machine Tools container for virtual machines hosted on VMware." \
name="ghcr.io/nccurry/open-vm-tools" \
version="latest" \
com.redhat.component="open-vm-tools" \
description="The open-vm-tools project is an open source implementation of VMware Tools. It is a suite of open source virtualization utilities and drivers to improve the functionality, user experience and administration of VMware virtual machines. This package contains only the core user-space programs and libraries of open-vm-tools." \
io.k8s.description="The open-vm-tools project is an open source implementation of VMware Tools. It is a suite of open source virtualization utilities and drivers to improve the functionality, user experience and administration of VMware virtual machines. This package contains only the core user-space programs and libraries of open-vm-tools." \
io.k8s.display-name="open-vm-tools" \
io.openshift.tags="open-vm-tools,vmware" \
maintainer="Nick Curry <[email protected]>"
ENV SYSTEMD_IGNORE_CHROOT=1
RUN microdnf install -y --nodocs open-vm-tools
COPY entrypoint.sh /entrypoint.sh
RUN chmod 755 /entrypoint.sh
# Uncomment to change logging behavior
# https://kb.vmware.com/s/article/1007873
# COPY tools.conf /etc/vmware-tools/tools.conf
CMD ["/entrypoint.sh"]