-
Notifications
You must be signed in to change notification settings - Fork 591
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 (#570)
Co-authored-by: Adam Jordens <[email protected]>
- Loading branch information
Showing
4 changed files
with
4 additions
and
0 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 fiat-web/build/install/fiat /opt/fiat | ||
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/fiat/bin/fiat"] |
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 fiat-web/build/install/fiat /opt/fiat | ||
RUN apk --no-cache add --update bash openjdk11-jre | ||
RUN adduser -D -S spinnaker | ||
RUN mkdir -p /opt/spinnaker/plugins && chown -R spinnaker:nogroup /opt/spinnaker/plugins | ||
USER spinnaker | ||
CMD ["/opt/fiat/bin/fiat"] |
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 fiat-web/build/install/fiat /opt/fiat | ||
RUN apt-get update && apt-get -y install openjdk-11-jre-headless wget | ||
RUN adduser --disabled-login --system spinnaker | ||
RUN mkdir -p /opt/spinnaker/plugins && chown -R spinnaker:nogroup /opt/spinnaker/plugins | ||
USER spinnaker | ||
CMD ["/opt/fiat/bin/fiat"] |
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 fiat-web/build/install/fiat /opt/fiat | ||
RUN apt-get update && apt-get -y install openjdk-8-jre-headless wget | ||
RUN adduser --disabled-login --system spinnaker | ||
RUN mkdir -p /opt/spinnaker/plugins && chown -R spinnaker:nogroup /opt/spinnaker/plugins | ||
USER spinnaker | ||
CMD ["/opt/fiat/bin/fiat"] |