-
Notifications
You must be signed in to change notification settings - Fork 592
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(build): Update Dockerfiles for new cloudbuild configs (#562)
See spinnaker/buildtool#14 Co-authored-by: Adam Jordens <adam@jordens.org>
- Loading branch information
Showing
5 changed files
with
22 additions
and
16 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 |
---|---|---|
@@ -1,6 +1,12 @@ | ||
FROM gcr.io/spinnaker-marketplace/gradle_cache | ||
MAINTAINER delivery-engineering@netflix.com | ||
ENV GRADLE_USER_HOME /gradle_cache/.gradle | ||
COPY . compiled_sources | ||
WORKDIR compiled_sources | ||
RUN ./gradlew --no-daemon fiat-web:installDist -x test | ||
FROM ubuntu:eoan | ||
MAINTAINER sig-platform@spinnaker.io | ||
|
||
RUN apt-get update \ | ||
&& apt-get -y upgrade \ | ||
&& apt-get install -y \ | ||
openjdk-8-jdk-headless \ | ||
&& apt-get clean | ||
|
||
ENV GRADLE_USER_HOME /workspace/.gradle | ||
ENV GRADLE_OPTS -Xmx2048m | ||
CMD ./gradlew --no-daemon fiat-web:installDist -x test |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM ubuntu:bionic | ||
MAINTAINER delivery-engineering@netflix.com | ||
COPY --from=compile /compiled_sources/fiat-web/build/install/fiat /opt/fiat | ||
MAINTAINER sig-platform@spinnaker.io | ||
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 | ||
USER spinnaker | ||
CMD ["/opt/fiat/bin/fiat"] | ||
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM ubuntu:bionic | ||
MAINTAINER delivery-engineering@netflix.com | ||
COPY --from=compile /compiled_sources/fiat-web/build/install/fiat /opt/fiat | ||
MAINTAINER sig-platform@spinnaker.io | ||
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 | ||
USER spinnaker | ||
CMD ["/opt/fiat/bin/fiat"] | ||
CMD ["/opt/fiat/bin/fiat"] |