diff --git a/images/runtime/Dockerfile-jre11 b/images/runtime/Dockerfile-jre11 index 0574f914..fbbf5a9c 100644 --- a/images/runtime/Dockerfile-jre11 +++ b/images/runtime/Dockerfile-jre11 @@ -4,6 +4,8 @@ COPY src/main/c/libfnunixsocket.so /function/runtime/lib/ RUN ["/usr/bin/java", "-Xshare:dump"] +RUN addgroup --system --gid 1000 fn && adduser --uid 1000 --gid 1000 fn + # The UseExeperimentalVMOptions, UseCGroupMemoryLimitForHeap and MaxRAMFraction options that were used in the JDK 9 builds are # no longer supported in JDK 11 - so these have been removed. We now rely on the built-in ContainerSupport option that Linux JDKs # use to configure themselves when detecting they are running in a container. diff --git a/infra/update/functions/Jenkinsfile b/infra/update/functions/Jenkinsfile index b5691ecf..8162ef57 100644 --- a/infra/update/functions/Jenkinsfile +++ b/infra/update/functions/Jenkinsfile @@ -1,7 +1,7 @@ pipeline { agent any parameters { - string(name: 'IMAGE', defaultValue: 'registry.oracledx.com/skeppare/functions-service:latest', description: 'Which image to use (full repository:tag, e.g. fnproject/functions:latest)') + string(name: 'IMAGE', defaultValue: 'registry.oracledx.com/skeppare/functions-service:latest', description: 'Which image to use (full repository:tag, e.g. fnproject/fnserver:latest)') string(name: 'SOURCE_REPO', defaultValue: 'git@github.com:fnproject/fn.git', description: 'Which git repo to use to build the CLI tool') string(name: 'SOURCE_BRANCH', defaultValue: 'master', description: 'Which git repo branch to use to build the CLI tool') } diff --git a/release.version b/release.version index 34b31707..87903b67 100644 --- a/release.version +++ b/release.version @@ -1 +1 @@ -1.0.91 +1.0.93