-
Notifications
You must be signed in to change notification settings - Fork 741
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
36 additions
and
20 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 | ||
MAINTAINER sig-platform@spinnaker.io | ||
COPY ./gate-web/build/install/gate /opt/gate | ||
RUN yum -y install java-11-openjdk-headless.x86_64 wget vim | ||
RUN adduser spinnaker | ||
|
||
RUN mkdir -p /opt/gate/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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FROM ubuntu:bionic | ||
MAINTAINER sig-platform@spinnaker.io | ||
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 -p /opt/gate/plugins && chown -R spinnaker:nogroup /opt/gate/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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,8 +22,6 @@ | |
} | ||
} | ||
|
||
enableFeaturePreview("VERSION_ORDERING_V2") | ||
|
||
rootProject.name = "gate" | ||
|
||
include "gate-api", | ||
|