Skip to content

Commit

Permalink
Add rcedit and osslsigncode (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrb0001 authored Jul 13, 2024
1 parent 66b7d6f commit db6fb8b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
adb \
openjdk-17-jdk-headless \
rsync \
wine64 \
osslsigncode \
&& rm -rf /var/lib/apt/lists/*

ARG GODOT_VERSION="4.2.1"
Expand Down Expand Up @@ -62,3 +64,7 @@ RUN echo 'export/android/debug_keystore_pass = "android"' >> ~/.config/godot/edi
RUN echo 'export/android/force_system_user = false' >> ~/.config/godot/editor_settings-4.tres
RUN echo 'export/android/timestamping_authority_url = ""' >> ~/.config/godot/editor_settings-4.tres
RUN echo 'export/android/shutdown_adb_on_exit = true' >> ~/.config/godot/editor_settings-4.tres

RUN wget https://github.com/electron/rcedit/releases/download/v2.0.0/rcedit-x64.exe -O /opt/rcedit.exe
RUN echo 'export/windows/rcedit = "/opt/rcedit.exe"' >> ~/.config/godot/editor_settings-4.tres
RUN echo 'export/windows/wine = "/usr/bin/wine64-stable"' >> ~/.config/godot/editor_settings-4.tres
6 changes: 6 additions & 0 deletions mono.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
wget \
zip \
rsync \
wine64 \
osslsigncode \
&& rm -rf /var/lib/apt/lists/*

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

ENV PATH="/opt/butler/bin:${PATH}"

RUN wget https://github.com/electron/rcedit/releases/download/v2.0.0/rcedit-x64.exe -O /opt/rcedit.exe
RUN echo 'export/windows/rcedit = "/opt/rcedit.exe"' >> ~/.config/godot/editor_settings-4.tres
RUN echo 'export/windows/wine = "/usr/bin/wine64-stable"' >> ~/.config/godot/editor_settings-4.tres

0 comments on commit db6fb8b

Please sign in to comment.