This is an automated email from the ASF dual-hosted git repository.
more pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/knox.git
The following commit(s) were added to refs/heads/master by this push:
new 024897d8d KNOX-2932 - Fix TLS Ciphers issue and add kerberos support
to the docker image (#772)
024897d8d is described below
commit 024897d8d4ebad2cc5e1b199e485b5dbc39040af
Author: Sandeep Moré <[email protected]>
AuthorDate: Wed Jul 19 06:41:47 2023 -0400
KNOX-2932 - Fix TLS Ciphers issue and add kerberos support to the docker
image (#772)
---
gateway-docker/src/main/resources/docker/Dockerfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gateway-docker/src/main/resources/docker/Dockerfile
b/gateway-docker/src/main/resources/docker/Dockerfile
index 27c916d3b..c41a4ab0c 100644
--- a/gateway-docker/src/main/resources/docker/Dockerfile
+++ b/gateway-docker/src/main/resources/docker/Dockerfile
@@ -13,11 +13,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-FROM openjdk:8-jre-alpine
+FROM openjdk:8-jre-alpine3.8
MAINTAINER Apache Knox <[email protected]>
# Make sure required packages are available
-RUN apk --no-cache add bash procps ca-certificates && update-ca-certificates
+RUN apk --no-cache add bash procps ca-certificates krb5 &&
update-ca-certificates
# Create an knox user
RUN addgroup -S knox && adduser -S -G knox knox