VMware/ovftool: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

2 June 2023

  • curprev 19:0619:06, 2 June 2023Admin talk contribs 1,037 bytes +1,037 Created page with "= Build OVFTOOL Docker = == 1. Download OVFTOOL from My VMware == == 2. Create Dockerfile == FROM ubuntu:20.04 LABEL MAINTAINER "Daniel Roessner" # Suppress warning about UTF-8 ENV LC_CTYPE=POSIX ENV OVFTOOL_FILENAME=VMware-ovftool-4.4.2-17901668-lin.x86_64.bundle ADD $OVFTOOL_FILENAME /tmp/ WORKDIR /root RUN /bin/sh /tmp/$OVFTOOL_FILENAME --console --required --eulas-agreed && \ rm -f /tmp/$OVFTOOL_FILENAME ENTRYPOINT ["ovftool"] == 3. Build t..."