-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added generation from openapi * added tags * add generation of openapi.json, swith to openapi example in update.ts
- Loading branch information
Showing
10 changed files
with
15,292 additions
and
448 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
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,21 @@ | ||
FROM eclipse-temurin:17 as build-prepare | ||
|
||
RUN apt-get update && apt-get install -y git maven | ||
|
||
FROM build-prepare as build | ||
|
||
ARG VERSION=22.0.5 | ||
|
||
RUN --mount=type=cache,target=/root/.m2/ git clone \ | ||
--config core.symlinks=true \ | ||
--depth 1 \ | ||
--branch ${VERSION} \ | ||
https://github.com/keycloak/keycloak.git && \ | ||
cd /keycloak && \ | ||
./mvnw -pl quarkus/deployment,quarkus/dist -am -DskipTests clean install && \ | ||
cd services && \ | ||
mvn -s ../maven-settings.xml -Pjboss-release -DskipTests clean package | ||
|
||
FROM scratch | ||
|
||
COPY --from=build /keycloak/services/target/apidocs-rest/swagger/apidocs/openapi.json . |
Oops, something went wrong.