wxwidgets/build/tools/autoconf/Dockerfile
Vadim Zeitlin 9452f6b982 Remove frozen autoconf macros version a.k.a. "auto hacks"
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.
2023-07-24 00:11:26 +02:00

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"]