https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
m

Max

10/08/2020, 1:03 PM
I created a multiplatform app using the Full-stack Web Application template and want to dockerize it. Using Jib to create the Docker Image. It works fine for the Jvm parts but i dont get the .js file provided by the jsBrowserProductionWebpack task in my docker container. Anyone have any experience using jib with multiplatform?
hmm might be able to fix it by using jib conf:
containerizingMode = "packaged"
But now i need to name my jvm jar to
projectname.jar
instead of
projectname-jvm.jar
is that possible?
jib.containerizingMode = "packaged"
and
archiveAppendix.set("")
on the jvmJar did the trick! simple smile
👍 1
52 Views