-
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.
- Loading branch information
1 parent
28fbbfc
commit 0e7c0ee
Showing
5 changed files
with
66 additions
and
53 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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
FROM maven:3.8.5-openjdk-17-slim as builder | ||
|
||
WORKDIR /build | ||
|
||
COPY core core | ||
RUN mvn install -DskipTests -f core | ||
|
||
|
||
COPY booking booking | ||
RUN mvn install -DskipTests -f booking | ||
|
||
|
||
COPY ebl-issuance ebl-issuance | ||
RUN mvn install -DskipTests -f ebl-issuance | ||
|
||
|
||
COPY ebl-surrender ebl-surrender | ||
RUN mvn install -DskipTests -f ebl-surrender | ||
|
||
|
||
COPY sandbox sandbox | ||
RUN mvn install -DskipTests -f sandbox | ||
|
||
|
||
COPY spring-boot spring-boot | ||
RUN mvn install -DskipTests -f spring-boot | ||
|
||
|
||
FROM openjdk:17-alpine3.14 | ||
|
||
EXPOSE 8080 | ||
|
||
VOLUME /tmp | ||
|
||
COPY --from=builder /build/spring-boot/target/*.jar app.jar | ||
ENTRYPOINT ["java","-jar","/app.jar"] |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.