Skip to content

Instantly share code, notes, and snippets.

@shouhei
Created April 13, 2020 09:33
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shouhei/6295b777d83ab0be2a137eeff55a4d19 to your computer and use it in GitHub Desktop.
Save shouhei/6295b777d83ab0be2a137eeff55a4d19 to your computer and use it in GitHub Desktop.
DockerでVMware Remote Console Client を使うためのDockerfile
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