-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update all references, clear git cache, build and gitignore
- Loading branch information
Showing
11 changed files
with
341 additions
and
326 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,16 @@ | ||
# FROM gradle:4.7.0-jdk8-alpine | ||
# LABEL maintainer="Ravish Nagaraj" | ||
# WORKDIR /src | ||
# COPY build/libs . | ||
# RUN gradle build | ||
|
||
FROM openjdk:8-jdk-alpine | ||
LABEL maintainer="Ravish Nagaraj" | ||
WORKDIR /build | ||
|
||
WORKDIR /bin | ||
EXPOSE 8080 | ||
ADD ${JAR_FILE} openflightsapi-docker-1.0.1.jar | ||
ENTRYPOINT [ "./gradlew build"," && ","java","-jar","build/libs/openflightsapi-docker-1.0.1.jar" ] | ||
|
||
RUN mkdir /api | ||
|
||
COPY /build/libs/openflightsapi-docker-1.0.1.jar . | ||
|
||
ENTRYPOINT ["java", "-XX:+UnlockExperimentalVMOptions", "-XX:+UseCGroupMemoryLimitForHeap", "-Djava.security.egd=file:/dev/./urandom","-jar","/api/openfligthsapi.jar"] |
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
Binary file not shown.
314 changes: 157 additions & 157 deletions
314
build/reports/tests/test/classes/com.foxtel.spring.demo.test.FlightControllerTest.html
Large diffs are not rendered by default.
Oops, something went wrong.
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
312 changes: 156 additions & 156 deletions
312
build/test-results/test/TEST-com.foxtel.spring.demo.test.FlightControllerTest.xml
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,2 +1,7 @@ | ||
Manifest-Version: 1.0 | ||
Start-Class: com.foxtel.spring.demo.Application | ||
Spring-Boot-Classes: BOOT-INF/classes/ | ||
Spring-Boot-Lib: BOOT-INF/lib/ | ||
Spring-Boot-Version: 2.2.1.RELEASE | ||
Main-Class: org.springframework.boot.loader.JarLauncher | ||
|