-
-
Notifications
You must be signed in to change notification settings - Fork 10
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
autoconf: Update autoconf image file to use Ubuntu distro #13
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
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/alpine:3.20 | ||
FROM docker.io/library/ubuntu:22.04 | ||
|
||
ARG AUTOCONF_VERSION="2.71" | ||
ARG AUTOCONF_ARCHIVE_VERSION="2023.02.20" | ||
|
@@ -10,37 +10,33 @@ 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." | ||
|
||
RUN apk upgrade && \ | ||
apk add \ | ||
curl \ | ||
alpine-sdk \ | ||
autoconf \ | ||
automake \ | ||
pkgconfig \ | ||
xz | ||
RUN apt-get update && \ | ||
apt-get -yq install \ | ||
autotools-dev \ | ||
autoconf \ | ||
autoconf-archive \ | ||
build-essential \ | ||
curl \ | ||
pkg-config | ||
|
||
RUN set -o pipefail \ | ||
&& curl https://ftp.gnu.org/gnu/autoconf/autoconf-${AUTOCONF_VERSION}.tar.gz | tar -zxf - \ | ||
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 set -o pipefail \ | ||
&& curl https://ftp.gnu.org/gnu/automake/automake-${AUTOMAKE_VERSION}.tar.gz | tar -xzf - \ | ||
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 set -o pipefail \ | ||
&& curl https://ftp.gnu.org/gnu/autoconf-archive/autoconf-archive-${AUTOCONF_ARCHIVE_VERSION}.tar.xz | xz -cd - | tar -xf - \ | ||
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 set -o pipefail \ | ||
&& cp /usr/local/share/aclocal/*.m4 /usr/share/aclocal \ | ||
RUN cp /usr/local/share/aclocal/*.m4 /usr/share/aclocal \ | ||
&& cp /usr/share/aclocal/*.m4 /usr/local/share/aclocal | ||
|
||
VOLUME /src | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit; I'd prefer to keep the extra indent, to make it obvious that these are arguments to
apt-get
and not a new chain of commands :)