Skip to content

Commit 72f6226

Browse files
authored
Merge pull request #15 from IBM/updates
Updates
2 parents 47d8c50 + fc53c8c commit 72f6226

File tree

35 files changed

+418
-25
lines changed

35 files changed

+418
-25
lines changed

benchmarks/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ described in [UsingCloudObjectStorage.md](UsingCloudObjectStorage.md).
1313
|graph-bfs |Traverse a generated graph in breadth-first order | N |
1414
|graph-mst |Compute minimum spanning tree of a generated graph | N |
1515
|graph-pagerank |Compute page rank scores of a generated graph | N |
16+
|helloworld |A very simple benchmark that creates a string | N |
1617
|image-recognition |Image classification using a deep learning model from Model Zoo| Y |
1718
|network |Repeatedly measure send and receive time of a datagram socket | Y |
1819
|server-reply |Measure time to read a stream socket | N |

benchmarks/clock-synchronization/src/main/docker/Dockerfile.jvm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
####
1+
###
22
# This Dockerfile is used in order to build a container that runs the Quarkus application in JVM mode
33
###
4-
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.6
4+
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.8
55

66
ARG JAVA_PACKAGE=java-17-openjdk-headless
77
ARG RUN_JAVA_VERSION=1.3.8

benchmarks/clock-synchronization/src/main/docker/Dockerfile.legacy-jar

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
####
22
# This Dockerfile is used in order to build a container that runs the Quarkus application in JVM mode
33
###
4-
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.6
4+
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.8
55

66
ARG JAVA_PACKAGE=java-17-openjdk-headless
77
ARG RUN_JAVA_VERSION=1.3.8

benchmarks/clock-synchronization/src/main/docker/Dockerfile.native

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
####
22
# This Dockerfile is used in order to build a container that runs the Quarkus application in native (no JVM) mode
33
###
4-
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.6
4+
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.8
55
WORKDIR /work/
66
RUN chown 1001 /work \
77
&& chmod "g+rwX" /work \

benchmarks/compress/src/main/docker/Dockerfile.native

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
####
22
# This Dockerfile is used in order to build a container that runs the Quarkus application in native (no JVM) mode.
33
###
4-
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.6
4+
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.8
55
WORKDIR /work/
66
RUN chown 1001 /work \
77
&& chmod "g+rwX" /work \

benchmarks/dna-visualization/src/main/docker/Dockerfile.native

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
####
22
# This Dockerfile is used in order to build a container that runs the Quarkus application in native (no JVM) mode.
33
###
4-
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.6
4+
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.8
55
WORKDIR /work/
66
RUN chown 1001 /work \
77
&& chmod "g+rwX" /work \

benchmarks/dynamic-html/src/main/docker/Dockerfile.native

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
####
22
# This Dockerfile is used in order to build a container that runs the Quarkus application in native (no JVM) mode.
33
###
4-
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.6
4+
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.8
55
WORKDIR /work/
66
RUN chown 1001 /work \
77
&& chmod "g+rwX" /work \

benchmarks/graph-bfs/src/main/docker/Dockerfile.native

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
####
22
# This Dockerfile is used in order to build a container that runs the Quarkus application in native (no JVM) mode.
33
###
4-
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.6
4+
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.8
55
WORKDIR /work/
66
RUN chown 1001 /work \
77
&& chmod "g+rwX" /work \

benchmarks/graph-mst/src/main/docker/Dockerfile.native

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
####
22
# This Dockerfile is used in order to build a container that runs the Quarkus application in native (no JVM) mode.
33
###
4-
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.6
4+
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.8
55
WORKDIR /work/
66
RUN chown 1001 /work \
77
&& chmod "g+rwX" /work \

benchmarks/graph-pagerank/src/main/docker/Dockerfile.native

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
####
22
# This Dockerfile is used in order to build a container that runs the Quarkus application in native (no JVM) mode.
33
###
4-
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.6
4+
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.8
55
WORKDIR /work/
66
RUN chown 1001 /work \
77
&& chmod "g+rwX" /work \

0 commit comments

Comments
 (0)