A Docker image with Aut2exe.exe installed & on the PATH, allowing in-container AutoIt script compilation.
cordb/aut2exe:3.3.14.5
Below is an example for how to use docker-compose up
to compile an AutoIt project.
This example would generate MyApp.exe
and MyApp_debug.exe
into your project's dist/
directory,
version: "3.7"
services:
myProject:
image: cordb/aut2exe:3.3.14.5
volumes:
- type: bind
source: .
target: C:\MyProject
working_dir: C:\MyProject
entrypoint: [ "compile.bat" ]
MyProject/
compile.bat
MyApp.au3
MyApp.ico
Include/
dist/
Aut2exe.exe /in MyApp.au3 /out dist\MyApp.exe /icon MyApp.ico
Aut2exe.exe /in MyApp.au3 /out dist\MyApp_debug.exe /icon MyApp.ico /console