Skip to content

Commit 81cb162

Browse files
authored
Merge pull request #19 from godotengine/cmd-bash
Use /bin/bash as default CMD, log container build output
2 parents 2d95ceb + f5297d3 commit 81cb162

14 files changed

+32
-27
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@
77
*.dmg
88
*.zip
99
*.xip
10+
11+
logs/

Dockerfile.android

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ RUN git clone https://github.com/mono/mono --branch mono-${mono_version} --singl
3131
cd .. && \
3232
rm -rf /root/mono /root/godot-mono-builds
3333

34-
CMD ['/bin/bash']
34+
CMD /bin/bash

Dockerfile.export

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ RUN dnf -y install --setopt=install_weak_deps=False \
44
xorg-x11-server-Xvfb mesa-dri-drivers libXcursor libXinerama libXrandr libXi alsa-lib pulseaudio-libs java-1.8.0-openjdk-devel && \
55
dnf clean all
66

7-
CMD ['/bin/bash']
7+
CMD /bin/bash

Dockerfile.ios

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ RUN dnf -y install --setopt=install_weak_deps=False \
2020

2121
ENV OSXCROSS_IOS=not_nothing
2222

23-
CMD ['/bin/bash']
23+
CMD /bin/bash

Dockerfile.javascript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ RUN git clone https://github.com/mono/mono --branch mono-${mono_version} --singl
2626
cd .. && \
2727
rm -rf /root/mono /root/godot-mono-builds
2828

29-
CMD ['/bin/bash']
29+
CMD /bin/bash

Dockerfile.mono

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,5 @@ RUN if [ -z "${mono_version}" ]; then echo -e "\n\nargument mono-version is mand
1919
https://download.mono-project.com/repo/centos8-stable/m/msbuild/msbuild-sdkresolver-16.0+xamarinxplat.2018.09.26.17.53-0.xamarin.5.epel8.noarch.rpm \
2020
https://download.mono-project.com/repo/centos8-stable/n/nuget/nuget-4.7.0.5148.bin-0.xamarin.2.epel8.noarch.rpm && \
2121
rm -rf /root/mono
22+
23+
CMD /bin/bash

Dockerfile.mono-glue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ RUN dnf -y install --setopt=install_weak_deps=False \
66
xorg-x11-server-Xvfb libX11-devel libXcursor-devel libXrandr-devel libXinerama-devel libXi-devel alsa-lib-devel pulseaudio-libs-devel libudev-devel mesa-libGL-devel mesa-libGLU-devel mesa-dri-drivers && \
77
dnf clean all
88

9-
CMD ['/bin/bash']
9+
CMD /bin/bash

Dockerfile.msvc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ RUN dnf -y install --setopt=install_weak_deps=False \
2525
rm -rf /root/.wine/drive_c/users/root/Temp/* && \
2626
rm -rf /root/.cache
2727

28-
CMD /usr/bin/bash
28+
CMD /bin/bash

Dockerfile.osx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ RUN git clone https://github.com/mono/mono --branch mono-${mono_version} --singl
6262
ENV MONO64_PREFIX=/root/dependencies/mono
6363
ENV OSXCROSS_ROOT=/root/osxcross
6464

65-
CMD ['/bin/bash']
65+
CMD /bin/bash

Dockerfile.ubuntu-32

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ RUN git clone https://github.com/mono/mono --branch mono-${mono_version} --singl
4040
rm *.deb && \
4141
rm -rf /root/mono
4242

43-
CMD ['/bin/bash']
43+
CMD /bin/bash

0 commit comments

Comments
 (0)