Skip to content

Commit

Permalink
version 7.0.25 - switched docker container to non-root based on bitna…
Browse files Browse the repository at this point in the history
…mi distribution
  • Loading branch information
vlahoda committed May 25, 2023
1 parent 50db8b2 commit 0fe61f5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
group=cz.incad.kramerius
version=7.0.24
version=7.0.25
9 changes: 7 additions & 2 deletions search/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ repositories {

jib {
from {
image = 'tomcat:9.0.67-jre11-temurin-jammy'
//image = 'tomcat:9.0.67-jre11-temurin-jammy'
image = 'bitnami/tomcat:9.0.75'
platforms {
platform {
architecture = 'amd64'
Expand All @@ -142,6 +143,10 @@ jib {
to {
image = "ceskaexpedice/kramerius:${version}"
}
container.appRoot = '/usr/local/tomcat/webapps/search'
container {
//appRoot = '/usr/local/tomcat/webapps/search'
appRoot = '/opt/bitnami/tomcat/webapps/search'
user = '1001'
}
}

0 comments on commit 0fe61f5

Please sign in to comment.