-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into droidcon/tamzi-readmeupdate
- Loading branch information
Showing
27 changed files
with
1,220 additions
and
1,062 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,15 @@ | ||
FROM eclipse-temurin:17 AS build | ||
|
||
WORKDIR /app | ||
COPY . . | ||
RUN apt-get update && apt-get install -y git | ||
RUN ./gradlew server:fatJar | ||
|
||
|
||
FROM eclipse-temurin:17 | ||
WORKDIR /app | ||
COPY --from=build /app/server/build/libs/server-1.0-SNAPSHOT-standalone.jar /app/server.jar | ||
EXPOSE 1337 | ||
EXPOSE 433 | ||
|
||
CMD ["java", "-jar", "/app/server.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
Oops, something went wrong.