I am attempting to create a Docker container to handle my build pipeline for Unity.
In my Docker container I am running Ubuntu 16.04. Everything seems to work just fine until I actually try to run the installer. I am not fully understanding what the logs are telling me.
Any advice is greatly appreciated! Thank you in advance. :)
Here is the output from my Docker container build - please let me know if there are any other logs I can attach or look at to help solve the issue:
Step 16/20 : ENV UNITY3D_VERSION "2018.1.0f2"
---> Running in d0121721b1a4
Removing intermediate container d0121721b1a4
---> 88cd7299986d
Step 17/20 : RUN apt-get install -qq -y lib32gcc1 lib32stdc++6 libasound2 libc6 libc6-i386 libcairo2 libcap2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libfreetype6 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libgl1-mesa-glx libglib2.0-0 libglu1-mesa libgtk2.0-0 libnspr4 libnss3 libpango1.0-0 libstdc++6 libx11-6 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxtst6 zlib1g debconf npm libgtk2.0-0 libsoup2.4-1 libarchive13 && apt-get clean && rm -rf /var/lib/apt/lists/*
---> Running in 2b98d4a6888a
Removing intermediate container 2b98d4a6888a
---> b339898a8ba4
Step 18/20 : ADD https://beta.unity3d.com/download/170f0691b973/UnitySetup-${UNITY3D_VERSION} /opt/Unity
Downloading [==================================================>] 273.9kB/273.9kB
---> 263e84cac921
Step 19/20 : RUN chmod +x /opt/Unity
---> Running in 02030e358cf4
Removing intermediate container 02030e358cf4
---> 168586f4a370
Step 20/20 : RUN yes | /opt/Unity --unattended --install-location /opt/Unity-${UNITY3D_VERSION} && rm -rf /tmp/* /var/tmp/*
---> Running in cbe8264ccc3e
UNITY TERMS OF SERVICE
Do you accept the terms of the License Agreement? (y/n)
Beginning unattended installation to '/opt/Unity-2018.1.0f2', downloading packages to ''
Error 404 getting 'https://netstorage.unity3d.com/unity/170f0691b973/unity-2018.1.0f2-linux.ini'
Download of 'https://netstorage.unity3d.com/unity/170f0691b973/unity-2018.1.0f2-linux.ini' failed
Error 404 getting 'https://download.unity3d.com/download_unity/170f0691b973/unity-2018.1.0f2-linux.ini'
Download of 'https://download.unity3d.com/download_unity/170f0691b973/unity-2018.1.0f2-linux.ini' failed
Successfully downloaded https://beta.unity3d.com/download/170f0691b973/unity-2018.1.0f2-linux.ini => /tmp/.UW3GKZ
Selecting Unity
Selecting Documentation
Selecting StandardAssets
Required installation size: Total space required: 3.72 GB
Available space: Space available: 6.93 GB
Unable to write to install location '/opt/Unity-2018.1.0f2', aborting
The command '/bin/sh -c yes | /opt/Unity --unattended --install-location /opt/Unity-${UNITY3D_VERSION} && rm -rf /tmp/* /var/tmp/*' returned a non-zero code: 1
↧