File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 1
- FROM docker.io/library/alpine:3.19
1
+ FROM docker.io/library/alpine:3.20
2
2
3
3
ARG AUTOCONF_VERSION="2.71"
4
4
ARG AUTOCONF_ARCHIVE_VERSION="2023.02.20"
@@ -12,11 +12,13 @@ LABEL org.opencontainers.image.description="Container image with GNU Autoconf ${
12
12
13
13
RUN apk upgrade && \
14
14
apk add \
15
+ curl \
15
16
alpine-sdk \
16
17
autoconf \
17
18
automake \
18
19
pkgconfig \
19
20
xz
21
+
20
22
RUN set -o pipefail \
21
23
&& curl https://ftp.gnu.org/gnu/autoconf/autoconf-${AUTOCONF_VERSION}.tar.gz | tar -zxf - \
22
24
&& cd autoconf-${AUTOCONF_VERSION} \
@@ -36,6 +38,11 @@ RUN set -o pipefail \
36
38
&& make \
37
39
&& make install
38
40
41
+ # https://stackoverflow.com/questions/8811381/possibly-undefined-macro-ac-msg-error/49103418#49103418
42
+ RUN set -o pipefail \
43
+ && cp /usr/local/share/aclocal/*.m4 /usr/share/aclocal \
44
+ && cp /usr/share/aclocal/*.m4 /usr/local/share/aclocal
45
+
39
46
VOLUME /src
40
47
WORKDIR /src
41
48
You can’t perform that action at this time.
0 commit comments