-
Notifications
You must be signed in to change notification settings - Fork 0
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
Automate Docker images build & push #3
Conversation
d7958cb
to
1f381e3
Compare
1f381e3
to
ceeab88
Compare
ceeab88
to
9a72ca4
Compare
@@ -13,7 +13,6 @@ RUN cd /etc/yum.repos.d/ \ | |||
|
|||
RUN yum install -y \ | |||
httpd \ | |||
mod_auth_kerb \ |
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.
In theory with mod_auth_gssapi
should be enough
👉🏻 https://projects.theforeman.org/issues/32352
@@ -17,7 +17,7 @@ RUN yum install -y \ | |||
|
|||
ADD krb5-1.6.3.tar.gz /tmp | |||
RUN cd /tmp/krb5-1.6.3/src && \ | |||
./configure && make && make install | |||
./configure && make CFLAGS="-fgnu89-inline" && make install |
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.
Fixes the inlining/duplication issue with recent versions of gcc
compiler:
👉🏻 https://bugzilla.redhat.com/show_bug.cgi?id=547153
Contributes to grafana/xk6-kerberos#35