Update to 2.0.0.beta3

Added entrypoint to Docker image
Fixed issues with CORS when behind reverse-proxy
Added APP_URL environment variable
This commit is contained in:
GRIMSIM
2025-06-17 17:27:42 +02:00
parent f8e69e6b49
commit 373fbba63c
12 changed files with 86 additions and 46 deletions
+5 -1
View File
@@ -6,7 +6,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile
import java.nio.file.Files
group = "org.gameyfin"
version = "2.0.0.beta2"
version = "2.0.0.beta3"
allprojects {
repositories {
@@ -22,6 +22,10 @@ plugins {
kotlin("jvm")
}
tasks.named<Jar>("jar") {
enabled = false
}
subprojects {
apply(plugin = "java")