Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork16
autoconf: Update autoconf image file to use Ubuntu distro#13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM docker.io/library/ubuntu:22.04 | ||
ARG AUTOCONF_VERSION="2.71" | ||
ARG AUTOCONF_ARCHIVE_VERSION="2023.02.20" | ||
@@ -10,37 +10,34 @@ LABEL org.opencontainers.image.authors="Donghee Na" | ||
LABEL org.opencontainers.image.title="GNU Autoconf ${AUTOCONF_VERSION} container for CPython" | ||
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." | ||
RUNapt-get update && \ | ||
apt-get install -yq \ | ||
autotools-dev \ | ||
autoconf \ | ||
autoconf-archive \ | ||
build-essential \ | ||
curl \ | ||
pkg-config | ||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
RUN curl https://ftp.gnu.org/gnu/autoconf/autoconf-${AUTOCONF_VERSION}.tar.gz | tar -zxf - \ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Does it not work with There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Done:b200e7a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more.
Elegant! | ||
&& cd autoconf-${AUTOCONF_VERSION} \ | ||
&& ./configure --prefix=/usr/local \ | ||
&& make \ | ||
&& make install | ||
RUN curl https://ftp.gnu.org/gnu/automake/automake-${AUTOMAKE_VERSION}.tar.gz | tar -xzf - \ | ||
&& cd automake-${AUTOMAKE_VERSION} \ | ||
&& ./configure --prefix=/usr/local \ | ||
&& make \ | ||
&& make install | ||
RUN curl https://ftp.gnu.org/gnu/autoconf-archive/autoconf-archive-${AUTOCONF_ARCHIVE_VERSION}.tar.xz | xz -cd - | tar -xf - \ | ||
&& cd autoconf-archive-${AUTOCONF_ARCHIVE_VERSION} \ | ||
&& ./configure --prefix=/usr/local \ | ||
&& make \ | ||
&& make install | ||
# https://stackoverflow.com/questions/8811381/possibly-undefined-macro-ac-msg-error/49103418#49103418 | ||
RUN cp /usr/local/share/aclocal/*.m4 /usr/share/aclocal \ | ||
&& cp /usr/share/aclocal/*.m4 /usr/local/share/aclocal | ||
VOLUME /src | ||