forked from docker/awesome-compose
-
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.
Merge pull request docker#9 from glours/update_sparkjava_samples
Update SparkJava samples
- Loading branch information
Showing
9 changed files
with
41 additions
and
33 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
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,10 +1,14 @@ | ||
FROM maven:3.5-jdk-8-alpine AS build | ||
COPY pom.xml . | ||
RUN mvn --batch-mode dependency:resolve | ||
COPY src/ src | ||
FROM maven:3.6.3-jdk-11 AS build | ||
WORKDIR /workdir/server | ||
COPY pom.xml /workdir/server/pom.xml | ||
RUN mvn dependency:go-offline | ||
|
||
COPY src /workdir/server/src | ||
|
||
RUN mvn --batch-mode clean compile assembly:single | ||
|
||
FROM openjdk:8-jre-alpine3.7 | ||
FROM openjdk:11-jre-slim | ||
ARG DEPENDENCY=/workdir/server/target | ||
EXPOSE 8080 | ||
COPY --from=build target/app.jar /app.jar | ||
COPY --from=build ${DEPENDENCY}/app.jar /app.jar | ||
CMD java -jar /app.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
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 |
---|---|---|
|
@@ -3,4 +3,4 @@ services: | |
sparkjava: | ||
build: sparkjava | ||
ports: | ||
- 80:8080 | ||
- 8080:8080 |
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,10 +1,14 @@ | ||
FROM maven:3.5-jdk-8-alpine AS build | ||
COPY pom.xml . | ||
RUN mvn --batch-mode dependency:resolve | ||
COPY src/ src | ||
FROM maven:3.6.3-jdk-11 AS build | ||
WORKDIR /workdir/server | ||
COPY pom.xml /workdir/server/pom.xml | ||
RUN mvn dependency:go-offline | ||
|
||
COPY src /workdir/server/src | ||
|
||
RUN mvn --batch-mode clean compile assembly:single | ||
|
||
FROM openjdk:8-jre-alpine3.7 | ||
FROM openjdk:11-jre-slim | ||
ARG DEPENDENCY=/workdir/server/target | ||
EXPOSE 8080 | ||
COPY --from=build target/app.jar /app.jar | ||
COPY --from=build ${DEPENDENCY}/app.jar /app.jar | ||
CMD java -jar /app.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
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