Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/docker/Dockerfile.glibc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:noble AS build
FROM redhat/ubi8 AS build

# Possible values: s390x, arm64, x64
ARG NODE_ARCH
Expand All @@ -9,7 +9,9 @@ ENV PATH=$PATH:/nodejs/bin
WORKDIR /kerberos
COPY . .

RUN apt-get -qq update && apt-get -qq install -y python3 build-essential libkrb5-dev && ldd --version
RUN yum install -y python39 git make gcc-c++ krb5-devel

RUN if [[ $(ldd --version) =~ "2.28" ]]; then echo "using glibc 2.28"; else echo "glibc version is not 2.28. bailing..." && exit 1; fi

RUN node .github/scripts/build.mjs

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ npm install kerberos
Below are the platforms that are available as prebuilds on each github release.
`prebuild-install` downloads these automatically depending on the platform you are running npm install on.

- Linux GLIBC 2.23 or later
- Linux GLIBC 2.28 or later
- s390x
- arm64
- x64
Expand Down
2 changes: 1 addition & 1 deletion etc/README.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ npm install kerberos
Below are the platforms that are available as prebuilds on each github release.
`prebuild-install` downloads these automatically depending on the platform you are running npm install on.

- Linux GLIBC 2.23 or later
- Linux GLIBC 2.28 or later
- s390x
- arm64
- x64
Expand Down