5 lines
108 B
Docker
5 lines
108 B
Docker
|
FROM alpine:latest
|
||
|
RUN apk add wine
|
||
|
COPY ./executables/nsis-3.10-setup.exe /setup.exe
|
||
|
RUN wine setup.exe /S
|