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
2
2
3
3
# If this docker file is being used in the context of building your images from a Spark distribution, the docker build
4
4
# command should be invoked from the top level directory of the Spark distribution. E.g.:
5
5
# docker build -t spark-driver:latest -f dockerfiles/driver/Dockerfile .
6
6
7
+ RUN apk upgrade --update
8
+ RUN apk add --update bash
7
9
RUN mkdir -p /opt/spark
8
10
RUN touch /opt/spark/RELEASE
9
11
Original file line number Diff line number Diff line change 1
- FROM anapsix/alpine-java:8
1
+ FROM openjdk:8-alpine
2
2
3
3
# If this docker file is being used in the context of building your images from a Spark distribution, the docker build
4
4
# command should be invoked from the top level directory of the Spark distribution. E.g.:
5
5
# docker build -t spark-executor:latest -f dockerfiles/executor/Dockerfile .
6
6
7
+ RUN apk upgrade --update
8
+ RUN apk add --update bash
7
9
RUN mkdir -p /opt/spark
8
10
RUN touch /opt/spark/RELEASE
9
11
You can’t perform that action at this time.
0 commit comments