| # Licensed to the Apache Software Foundation (ASF) under one or more |
| # contributor license agreements. See the NOTICE file distributed with |
| # this work for additional information regarding copyright ownership. |
| # The ASF licenses this file to you under the Apache License, Version 2.0 |
| # (the "License"); you may not use this file except in compliance with |
| # the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| FROM eclipse-temurin:17-jre |
| |
| MAINTAINER moresandeep |
| |
| RUN useradd -ms /bin/bash gateway |
| |
| # Create directories |
| RUN mkdir /knox-runtime |
| RUN mkdir /knox-runtime/knoxshell |
| |
| # Copy artifacts |
| COPY knox-temp-artifacts /knox-temp-artifacts-staging |
| COPY knoxshell-temp-artifacts /knoxshell-temp-artifacts-staging |
| |
| # Move runtime to new location |
| RUN mv /knox-temp-artifacts-staging/*/* /knox-runtime/ && \ |
| mv /knoxshell-temp-artifacts-staging/*/* /knox-runtime/knoxshell/ && \ |
| rm -rf /knox-temp-artifacts-staging /knoxshell-temp-artifacts-staging |
| |
| # Add configuration |
| ADD master /knox-runtime/data/security/master |
| ADD gateway-site.xml /knox-runtime/conf/gateway-site.xml |
| ADD conf/topologies/knoxtoken.xml /knox-runtime/conf/topologies/knoxtoken.xml |
| ADD conf/topologies/knoxldap.xml /knox-runtime/conf/topologies/knoxldap.xml |
| ADD conf/topologies/remoteauth.xml /knox-runtime/conf/topologies/remoteauth.xml |
| |
| ADD conf/topologies/health.xml /knox-runtime/conf/topologies/health.xml |
| |
| RUN chown -R gateway /knox-runtime/ |
| |
| ADD ldap.sh /ldap.sh |
| ADD gateway.sh /gateway.sh |
| |
| RUN chmod +x /ldap.sh /gateway.sh |