-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from emqx/feat-add-rocky-linux9
feat: add rocky linux 9
- Loading branch information
Showing
6 changed files
with
54 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG BUILD_FROM=ubuntu:20.04 | ||
ARG BUILD_FROM=ubuntu:22.04 | ||
FROM ${BUILD_FROM} | ||
|
||
ENV EMQX_BUILDER_IMAGE=${BUILD_FROM} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
ARG BUILD_FROM=rockylinux:9 | ||
FROM ${BUILD_FROM} | ||
|
||
RUN dnf -y update && dnf -y groupinstall development | ||
RUN dnf -y install \ | ||
jq \ | ||
libatomic \ | ||
ncurses-devel \ | ||
openssl-devel \ | ||
perl-FindBin \ | ||
python3-pip \ | ||
systemd \ | ||
unixODBC \ | ||
vim \ | ||
wget \ | ||
which | ||
|
||
RUN dnf -y install \ | ||
krb5-workstation \ | ||
cyrus-sasl-devel \ | ||
cyrus-sasl \ | ||
cyrus-sasl-gssapi | ||
|
||
# The following is not necessary for Kerberos authentication but makes testing | ||
# https://github.com/kafka4beam/sasl_auth easier | ||
RUN dnf -y install \ | ||
krb5-server \ | ||
expect | ||
|
||
RUN ln -s /usr/bin/python3 /usr/bin/python | ||
|
||
WORKDIR / | ||
|
||
COPY get-cmake.sh /get-cmake.sh | ||
RUN /get-cmake.sh build | ||
|
||
# cleanup | ||
RUN dnf clean all && \ | ||
rm -rf /tmp/* && \ | ||
rm -rf /var/tmp/* | ||
|
||
# Elixir complains if runs without UTF-8 | ||
ENV LC_ALL=C.UTF-8 | ||
ENV LANG=C.UTF-8 | ||
|
||
WORKDIR / | ||
CMD [ "/bin/bash" ] |
This file was deleted.
Oops, something went wrong.