Skip to content
Snippets Groups Projects
Unverified Commit ecec133c authored by Walter Leibbrandt's avatar Walter Leibbrandt Committed by GitHub
Browse files

Ensure that Metabase JAR is readable by `metabase` container user (#10510)

If the umask of the user that builds the image is xx7, the JAR will not be
world readable in the resulting image.
parent 45881866
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,7 @@ RUN apk add --update bash ttf-dejavu fontconfig
# add Metabase jar
COPY ./metabase.jar /app/
RUN chmod o+r /app/metabase.jar
# add our run script to the image
COPY ./run_metabase.sh /app/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment