offline-twitter/.woodpecker/docker/innosetup.dockerfile

16 lines
474 B
Plaintext
Raw Normal View History

2024-02-19 23:25:28 -08:00
# Inspired by: https://github.com/amake/innosetup-docker/
from ubuntu:jammy
run dpkg --add-architecture i386
run apt update
2024-03-13 20:22:50 -07:00
run apt install -y curl ssh wine wine32 xvfb
2024-02-19 23:25:28 -08:00
run curl -SL "https://files.jrsoftware.org/is/6/innosetup-6.2.2.exe" -o is.exe
env DISPLAY ":99"
env WINEDEBUG "-all,err+all"
run xvfb-run wine is.exe /SP- /VERYSILENT /ALLUSERS /SUPPRESSMSGBOXES /DOWNLOADISCRYPT=1
copy iscc.sh /usr/bin/iscc.sh
# For SSH upload
copy known_hosts /root/.ssh/known_hosts