File tree 2 files changed +3
-3
lines changed
smoke-tests/images/servlet
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
import com.bmuschko.gradle.docker.tasks.image.DockerBuildImage
2
2
import com.bmuschko.gradle.docker.tasks.image.DockerPushImage
3
- import org.gradle.configurationcache.extensions.capitalized
3
+ import org.apache.commons.lang.StringUtils
4
4
5
5
plugins {
6
6
id(" otel.spotless-conventions" )
@@ -104,7 +104,7 @@ tasks {
104
104
continue
105
105
}
106
106
println (server)
107
- val serverName = server.capitalized( )
107
+ val serverName = StringUtils .capitalize(server )
108
108
for (entry in matrices) {
109
109
for (version in entry.version) {
110
110
val dotIndex = version.indexOf(' .' )
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ ARG baseDownloadUrl
8
8
# The user ID 1000 is the default for the first "regular" user on Fedora/RHEL,
9
9
# so there is a high chance that this ID will be equal to the current user
10
10
# making it easier to use volumes (no permission issues)
11
- RUN groupadd -r jboss -g 1000 && useradd -u 1000 -r -g jboss -m -d /opt/jboss -s /sbin/nologin -c "JBoss user" jboss && \
11
+ RUN groupadd -r jboss -g 1001 && useradd -u 1001 -r -g jboss -m -d /opt/jboss -s /sbin/nologin -c "JBoss user" jboss && \
12
12
chmod 755 /opt/jboss
13
13
14
14
# Set the working directory to jboss' user home directory
You can’t perform that action at this time.
0 commit comments