mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
### What is this PR for? This PR is for making docker images for zeppelin releases. It contains a script for building image for each release. Another script is used for publishing images to zeppelin Dockerhub account. This repo, https://github.com/mfelgamal/zeppelin-dockers, is a demonstration of this PR. It contains zeppelin-base image and an image for each zeppelin release. ### What type of PR is it? [Feature] ### Todos - Review Comments - Documentation ### What is the Jira issue? https://issues.apache.org/jira/browse/ZEPPELIN-1386 ### How should this be tested? - run create_release script or publish_release script. ### Screenshots (if appropriate) ### Questions: - Does the licenses files need update? no - Is there breaking changes for older versions? no - Does this needs documentation? yes Author: mahmoudelgamal <mahmoudf.elgamal@gmail.com> Author: mfelgamal <mahmoudf.elgamal@gmail.com> Author: Mahmoud Elgamal <mahmoudf.elgamal@gmail.com> Author: 1ambda <1amb4a@gmail.com> Closes #1538 from mfelgamal/zeppelin-dockers and squashes the following commits:cc8493f[Mahmoud Elgamal] Merge pull request #3 from 1ambda/fix/remove-startzeppelinshd48ecef[1ambda] fix: Remove start-zeppelin.shb64c680[mahmoudelgamal] Remove gcc and g++ for decreasing the size1f093d4[mahmoudelgamal] Add script start-zeppelin to zeppelin-based2c744e[mahmoudelgamal] add scala to zeppelin-basefd23970[mahmoudelgamal] remove bash erorr message.e1d4b77[mahmoudelgamal] add R and python to zeppelin-basee731cb4[mahmoudelgamal] Add java-cacerts to zeppelin-basee642309[mahmoudelgamal] Add documentation and some modifications231a414[mahmoudelgamal] Add zeppelin-base imageac06f3a[mahmoudelgamal] Make docker image for zeppelin release48d0a01[mfelgamal] Merge pull request #1 from apache/master
42 lines
2.1 KiB
Docker
42 lines
2.1 KiB
Docker
# 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 alpine:3.4
|
|
MAINTAINER Apache Software Foundation <dev@zeppelin.apache.org>
|
|
|
|
ENV JAVA_HOME /usr/lib/jvm/java-1.7-openjdk
|
|
ENV PATH $PATH:$JAVA_HOME/bin
|
|
|
|
RUN apk add --update bash curl openjdk7-jre wget ca-certificates python build-base make gcc g++ java-cacerts openssl && \
|
|
rm /usr/lib/jvm/java-1.7-openjdk/jre/lib/security/cacerts && \
|
|
ln -s /etc/ssl/certs/java/cacerts /usr/lib/jvm/java-1.7-openjdk/jre/lib/security/cacerts && \
|
|
curl --silent \
|
|
--location https://github.com/sgerrand/alpine-pkg-R/releases/download/3.3.1-r0/R-3.3.1-r0.apk --output /var/cache/apk/R-3.3.1-r0.apk && \
|
|
apk add --update --allow-untrusted /var/cache/apk/R-3.3.1-r0.apk && \
|
|
curl --silent \
|
|
--location https://github.com/sgerrand/alpine-pkg-R/releases/download/3.3.1-r0/R-dev-3.3.1-r0.apk --output /var/cache/apk/R-dev-3.3.1-r0.apk && \
|
|
apk add --update --allow-untrusted /var/cache/apk/R-dev-3.3.1-r0.apk && \
|
|
R -e "install.packages('knitr', repos = 'http://cran.us.r-project.org')" && \
|
|
apk del curl build-base make gcc g++ && \
|
|
rm -rf /var/cache/apk/*
|
|
|
|
RUN wget -O /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.1.3/dumb-init_1.1.3_amd64
|
|
RUN chmod +x /usr/local/bin/dumb-init
|
|
|
|
# ports for zeppelin
|
|
EXPOSE 8080 7077
|
|
|
|
ENTRYPOINT ["/usr/local/bin/dumb-init", "--"]
|