You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LABEL org.opencontainers.image.title="GNU Autoconf ${AUTOCONF_VERSION} container for CPython"
11
11
LABEL org.opencontainers.image.description="Container image with GNU Autoconf ${AUTOCONF_VERSION}, GNU Automake ${AUTOMAKE_VERSION}, and autoconf-archive ${AUTOCONF_ARCHIVE_VERSION} for generating CPython's configure script."
12
12
13
-
RUNapk upgrade && \
14
-
apk add \
15
-
curl \
16
-
alpine-sdk \
17
-
autoconf \
18
-
automake \
19
-
pkgconfig \
20
-
xz
13
+
RUNapt-get update && \
14
+
apt-get install -yq \
15
+
autotools-dev \
16
+
autoconf \
17
+
autoconf-archive \
18
+
build-essential \
19
+
curl \
20
+
pkg-config
21
21
22
-
RUN set -o pipefail \
23
-
&& curl https://ftp.gnu.org/gnu/autoconf/autoconf-${AUTOCONF_VERSION}.tar.gz | tar -zxf - \
22
+
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
23
+
RUN curl https://ftp.gnu.org/gnu/autoconf/autoconf-${AUTOCONF_VERSION}.tar.gz | tar -zxf - \
24
24
&& cd autoconf-${AUTOCONF_VERSION} \
25
25
&& ./configure --prefix=/usr/local \
26
26
&& make \
27
27
&& make install
28
-
RUN set -o pipefail \
29
-
&& curl https://ftp.gnu.org/gnu/automake/automake-${AUTOMAKE_VERSION}.tar.gz | tar -xzf - \
28
+
RUN curl https://ftp.gnu.org/gnu/automake/automake-${AUTOMAKE_VERSION}.tar.gz | tar -xzf - \
0 commit comments