Skip to content
This repository has been archived by the owner on Jan 9, 2020. It is now read-only.

Commit

Permalink
fix #538 - make /opt/spark/work-dir writable by gid 0 to operate bett…
Browse files Browse the repository at this point in the history
…er in anonymous uid scenarios
  • Loading branch information
erikerlandson committed Nov 29, 2017
1 parent 15a333c commit 69f817d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ FROM openjdk:8-alpine
RUN apk upgrade --no-cache && \
apk add --no-cache bash tini && \
mkdir -p /opt/spark && \
mkdir -p /opt/spark/work-dir \
mkdir -p /opt/spark/work-dir && \
chgrp -R root /opt/spark/work-dir && chmod -R ug+rwX /opt/spark/work-dir && \
touch /opt/spark/RELEASE && \
rm /bin/sh && \
ln -sv /bin/bash /bin/sh && \
Expand Down

0 comments on commit 69f817d

Please sign in to comment.