Created
April 13, 2020 09:33
-
-
Save shouhei/6295b777d83ab0be2a137eeff55a4d19 to your computer and use it in GitHub Desktop.
DockerでVMware Remote Console Client を使うためのDockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:18.04 | |
ENV DEBIAN_FRONTEND noninterractive | |
COPY ./VMware-Remote-Console-11.1.0-15913118.x86_64.bundle /root/ | |
RUN apt update && \ | |
apt install -y libgtk-3-dev libaio-dev libpcsclite1 libasound2-dev desktop-file-utils less && \ | |
cd /root && \ | |
./VMware-Remote-Console-11.1.0-15913118.x86_64.bundle --required --console --eulas-agreed && \ | |
apt clean && \ | |
rm -rf /var/lib/apt/lists/* | |
ENTRYPOINT ["vmrc"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment