Skip to content

Commit db6fb8b

Browse files
authored
Add rcedit and osslsigncode (#146)
1 parent 66b7d6f commit db6fb8b

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1313
adb \
1414
openjdk-17-jdk-headless \
1515
rsync \
16+
wine64 \
17+
osslsigncode \
1618
&& rm -rf /var/lib/apt/lists/*
1719

1820
ARG GODOT_VERSION="4.2.1"
@@ -62,3 +64,7 @@ RUN echo 'export/android/debug_keystore_pass = "android"' >> ~/.config/godot/edi
6264
RUN echo 'export/android/force_system_user = false' >> ~/.config/godot/editor_settings-4.tres
6365
RUN echo 'export/android/timestamping_authority_url = ""' >> ~/.config/godot/editor_settings-4.tres
6466
RUN echo 'export/android/shutdown_adb_on_exit = true' >> ~/.config/godot/editor_settings-4.tres
67+
68+
RUN wget https://github.com/electron/rcedit/releases/download/v2.0.0/rcedit-x64.exe -O /opt/rcedit.exe
69+
RUN echo 'export/windows/rcedit = "/opt/rcedit.exe"' >> ~/.config/godot/editor_settings-4.tres
70+
RUN echo 'export/windows/wine = "/usr/bin/wine64-stable"' >> ~/.config/godot/editor_settings-4.tres

mono.Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1313
wget \
1414
zip \
1515
rsync \
16+
wine64 \
17+
osslsigncode \
1618
&& rm -rf /var/lib/apt/lists/*
1719

1820
# When in doubt see the downloads page
@@ -48,3 +50,7 @@ RUN bash /opt/butler/getbutler.sh
4850
RUN /opt/butler/bin/butler -V
4951

5052
ENV PATH="/opt/butler/bin:${PATH}"
53+
54+
RUN wget https://github.com/electron/rcedit/releases/download/v2.0.0/rcedit-x64.exe -O /opt/rcedit.exe
55+
RUN echo 'export/windows/rcedit = "/opt/rcedit.exe"' >> ~/.config/godot/editor_settings-4.tres
56+
RUN echo 'export/windows/wine = "/usr/bin/wine64-stable"' >> ~/.config/godot/editor_settings-4.tres

0 commit comments

Comments
 (0)