-
-
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
Conversation
corona10
commented
Sep 27, 2024
•
edited
Loading
edited
- Port autoconf image from alpine distro to Ubuntu distro.
autoconf/Dockerfile
Outdated
autotools-dev \ | ||
autoconf \ | ||
autoconf-archive \ | ||
build-essential \ | ||
curl \ | ||
pkg-config |
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 :)
|
||
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 comment
The reason will be displayed to describe this comment to others. Learn more.
Does it not work with pipefail
?
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.
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.
Done: b200e7a
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.
Done: b200e7a
Elegant!
Hmm https://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz is unstable. |
This comment was marked as resolved.
This comment was marked as resolved.
@erlend-aasland gentle ping~ |