blob: a8865e87389dc3a9fc8236ea97d50be9ac80a4ba [file] [log] [blame]
#
# 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 openjdk:11 as builder
COPY . /zeppelin/
WORKDIR /zeppelin
RUN chmod +x ./mvnw
RUN ./mvnw clean package -am -pl zeppelin-interpreter-shaded,zeppelin-interpreter,jdbc -DskipTests
FROM openjdk:11
COPY --from=builder /zeppelin/bin /zeppelin/bin/
COPY --from=builder /zeppelin/conf /zeppelin/conf
COPY --from=builder /zeppelin/interpreter/jdbc /zeppelin/interpreter/jdbc
COPY --from=builder /zeppelin/zeppelin-interpreter-shaded/target /zeppelin/zeppelin-interpreter-shaded/target
WORKDIR /zeppelin
ENV JDBC_INTERPRETER_PORT=8082
RUN chmod +x ./bin/interpreter.sh
CMD ["./bin/interpreter.sh", \
"-d", "./interpreter/jdbc", \
"-c", "host.docker.internal", \
"-p", "${INTERPRETER_EVENT_SERVER_PORT}", \
"-r", "${JDBC_INTERPRETER_PORT}:${JDBC_INTERPRETER_PORT}", \
"-i", "jdbc-shared_process", \
"-l", "./local-repo", \
"-g", "jdbc"]