This hasn't been maintained since 2007 and doesn't seem to be really needed as using and not using them results in the same output currently.
10 lines
124 B
Docker
10 lines
124 B
Docker
FROM alpine:3.13
|
|
|
|
RUN apk add autoconf
|
|
|
|
# wxWidgets sources must be mounted here.
|
|
VOLUME /wx
|
|
|
|
WORKDIR /wx
|
|
|
|
CMD ["autoconf"]
|