-
Notifications
You must be signed in to change notification settings - Fork 740
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(plugins): updated plugin directory path for Docker (#1081)
- Loading branch information
Brandon Powell
authored
Mar 2, 2020
1 parent
9734588
commit 2044eb8
Showing
4 changed files
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,6 @@ MAINTAINER [email protected] | |
COPY gate-web/build/install/gate /opt/gate | ||
RUN apk --no-cache add --update bash openjdk8-jre | ||
RUN adduser -D -S spinnaker | ||
RUN mkdir -p /opt/spinnaker/plugins && chown -R spinnaker:nogroup /opt/spinnaker/plugins | ||
USER spinnaker | ||
CMD ["/opt/gate/bin/gate"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ MAINTAINER [email protected] | |
COPY gate-web/build/install/gate /opt/gate | ||
RUN apk --no-cache add --update bash openjdk11-jre | ||
RUN adduser -D -S spinnaker | ||
RUN mkdir plugins && chown -R 100:100 plugins | ||
RUN mkdir -p /opt/spinnaker/plugins && chown -R spinnaker:nogroup /opt/spinnaker/plugins | ||
USER spinnaker | ||
CMD ["/opt/gate/bin/gate"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ MAINTAINER [email protected] | |
COPY gate-web/build/install/gate /opt/gate | ||
RUN apt-get update && apt-get -y install openjdk-11-jre-headless wget | ||
RUN adduser --disabled-login --system spinnaker | ||
RUN mkdir plugins && chown -R 102:nogroup plugins | ||
RUN mkdir -p /opt/spinnaker/plugins && chown -R spinnaker:nogroup /opt/spinnaker/plugins | ||
USER spinnaker | ||
CMD ["/opt/gate/bin/gate"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ MAINTAINER [email protected] | |
COPY gate-web/build/install/gate /opt/gate | ||
RUN apt-get update && apt-get -y install openjdk-8-jre-headless wget | ||
RUN adduser --disabled-login --system spinnaker | ||
RUN mkdir plugins && chown -R 102:nogroup plugins | ||
RUN mkdir -p /opt/spinnaker/plugins && chown -R spinnaker:nogroup /opt/spinnaker/plugins | ||
USER spinnaker | ||
CMD ["/opt/gate/bin/gate"] |