This repository was archived by the owner on Jan 9, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
resource-managers/kubernetes/docker-minimal-bundle/src/main/docker Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1- FROM anapsix/alpine-java:8
1+ FROM openjdk:8-alpine
22
33# If this docker file is being used in the context of building your images from a Spark distribution, the docker build
44# command should be invoked from the top level directory of the Spark distribution. E.g.:
55# docker build -t spark-driver:latest -f dockerfiles/driver/Dockerfile .
66
7+ RUN apk upgrade --update
8+ RUN apk add --update bash
79RUN mkdir -p /opt/spark
810RUN touch /opt/spark/RELEASE
911
Original file line number Diff line number Diff line change 1- FROM anapsix/alpine-java:8
1+ FROM openjdk:8-alpine
22
33# If this docker file is being used in the context of building your images from a Spark distribution, the docker build
44# command should be invoked from the top level directory of the Spark distribution. E.g.:
55# docker build -t spark-executor:latest -f dockerfiles/executor/Dockerfile .
66
7+ RUN apk upgrade --update
8+ RUN apk add --update bash
79RUN mkdir -p /opt/spark
810RUN touch /opt/spark/RELEASE
911
You can’t perform that action at this time.
0 commit comments