onty / vsphere-on-docker

VSPhere client run on Docker
Apache License 2.0
3 stars 0 forks source link

error on build #1

Open nikosT opened 5 years ago

nikosT commented 5 years ago

I get the following error when trying to build the container:

The command '/bin/sh -c curl -SL 'http://winetricks.org/winetricks' -o /usr/local/bin/winetricks && chmod +x /usr/local/bin/winetricks' returned a non-zero code: 77

miguelwill commented 5 years ago

i add package "ca-certificates" for solve curl SSL issue:

Install some tools required for creating the image

RUN apt-get update \ && apt-get install -y --no-install-recommends \ curl \ unzip \ sudo \ ca-certificates

and change url: https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks

i'm reviewing other problems with wine execution, i wish i could give some detailed details for the automated execution.

jeremyfritzen commented 4 years ago

Hi, I successfully built the image but I didn't manage to run the vsphere client.

Could you give some insight on the docker run command to be launched?

Thank you!