We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53fbe31 commit f7d4e09Copy full SHA for f7d4e09
Docker/Dockerfile
@@ -77,7 +77,16 @@ RUN apt-get install gnupg ca-certificates \
77
&& rm -rf /var/lib/apt/lists/*
78
79
# U3D for further unity install
80
-RUN gem install u3d -v '1.1.5' && gem list
+# Oficial way
81
+# RUN gem install u3d -v '1.1.5' && gem list
82
+# Trying to fix available issue
83
+RUN git clone https://github.com/niezbop/u3d.git \
84
+ && cd u3d \
85
+ && git checkout -b custom_download_page origin/feature/custom_download_page \
86
+ && git log -1 \
87
+ && chmod a+x build.sh \
88
+ && ./build.sh
89
+RUN u3d -v
90
91
# Butler for itch.io upload
92
RUN wget -O butler.zip https://broth.itch.ovh/butler/linux-amd64/LATEST/archive/default \
0 commit comments