forked from spinnaker/igor
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
ef6173b
commit 3ff3cb8
Showing
3 changed files
with
16 additions
and
4 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM registry.access.redhat.com/ubi8/ubi:8.3 | ||
MAINTAINER sig-platform@spinnaker.io | ||
COPY igor-web/build/install/igor /opt/igor | ||
RUN yum -y install java-11-openjdk-headless.x86_64 wget vim curl net-tools nettle | ||
RUN yum -y update | ||
RUN adduser spinnaker | ||
RUN mkdir -p /opt/igor/plugins | ||
RUN chown -R spinnaker:spinnaker /opt/ | ||
USER spinnaker | ||
CMD ["/opt/igor/bin/igor"] |
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
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