Skip to content
Snippets Groups Projects
Commit 0af7c46a authored by Tom Robinson's avatar Tom Robinson
Browse files

Add plugins dir to Dockerfiles

parent 66e321eb
Branches
Tags
No related merge requests found
.babel_cache/*
.git/*
docs/*
OSX/*
target/*
......@@ -6,5 +7,7 @@ target/*
**node_modules
**metabase.jar
*.db
.dockerignore
Dockerfile
......@@ -71,6 +71,10 @@ RUN mkdir -p bin target/uberjar
COPY --from=builder /app/source/target/uberjar/metabase.jar /app/target/uberjar/
COPY --from=builder /app/source/bin/start /app/bin/
# create the plugins directory, with writable permissions
RUN mkdir -p /plugins
RUN chmod a+rwx /plugins
# expose our default runtime port
EXPOSE 3000
......
......@@ -18,6 +18,10 @@ COPY ./metabase.jar /app/
# add our run script to the image
COPY ./run_metabase.sh /app/
# create the plugins directory, with writable permissions
RUN mkdir -p /plugins
RUN chmod a+rwx /plugins
# expose our default runtime port
EXPOSE 3000
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment