Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create card #96

Merged
merged 4 commits into from
Apr 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .idea/runConfigurations/FlashcardsApplication.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions auth-server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ tasks.withType<Test> {
}

val dockerHubRepo = "wisskirchenj/"
// On ARM64 (!) uncomment the following lines to build JVM AMD64 image, since then default paketo builder is used
tasks.named<BootBuildImage>("bootBuildImage") {
builder.set("dashaun/builder:tiny")
// buildpacks.set(listOf("paketobuildpacks/java:beta"))
buildpacks.set(listOf("paketobuildpacks/java-native-image:beta"))
builder.set("paketobuildpacks/builder-jammy-buildpackless-tiny")
imageName.set(dockerHubRepo + rootProject.name + project.name + ":" + version)
createdDate.set("now")
environment.put("BP_NATIVE_IMAGE", "true")
}
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import org.springframework.boot.gradle.tasks.run.BootRun
plugins {
id("org.springframework.boot") version libs.versions.spring.boot
id("io.spring.dependency-management") version libs.versions.spring.dependency.management
id("org.graalvm.buildtools.native") version libs.versions.graalvm.buildtools
}

repositories {
Expand Down
Loading