Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion clients/cli/build/innosetup/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,9 @@ ENV WINEARCH win32
ENV FORCE_COLOR 1

# # Install Inno Setup binaries
RUN curl -SL "http://www.jrsoftware.org/download.php/is.exe" -o is.exe
# jrsoftware.org's old download.php shortcut no longer serves the binary
# directly (it now returns an HTML landing page); pin to a specific release
# from GitHub instead. Stick to the last unified (non x86/x64-split) build,
# since WINEARCH is win32.
RUN curl -SL "https://github.com/jrsoftware/issrc/releases/download/is-6_7_3/innosetup-6.7.3.exe" -o is.exe
RUN xvfb-run wine is.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART
Loading