15 lines
433 B
Docker
15 lines
433 B
Docker
FROM i386/alpine
|
|
|
|
LABEL com.jojodev.image.authors="john.olheiser@gmail.com"
|
|
|
|
RUN apk update && \
|
|
apk add wine xvfb xvfb-run wget && \
|
|
winecfg && \
|
|
mkdir -p /app/compiler && \
|
|
mkdir /app/bin && \
|
|
wget --no-check-certificate https://autohotkey.com/download/1.1/Ahk2Exe112401.zip -O /tmp/ahk.zip && \
|
|
unzip /tmp/ahk.zip -d /app/compiler
|
|
|
|
COPY compile.sh /app/compile.sh
|
|
|
|
ENTRYPOINT ["/bin/sh", "/app/compile.sh"] |