container containing openmessaging-benchmark
264
FROM maven:3.8.6-openjdk-11
# Install ca-certificates
RUN apt-get update && \
apt-get install -y ca-certificates && \
update-ca-certificates -f
# Set the working directory to /app
WORKDIR /app
# Clone the OpenMessaging Benchmark repository
RUN git clone https://github.com/openmessaging/benchmark.git .
# Build the benchmark project using Maven
RUN mvn clean verify
# Set the default command to run the benchmark driver
CMD ["bin/benchmark"]
# Run a script in another directory during docker run
ENTRYPOINT ["/bin/bash", "-c"]
Content type
Image
Digest
sha256:ae80ba06b…
Size
979.6 MB
Last updated
over 2 years ago
docker pull nomadramanujan/openmessaging-benchmark