mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2024-11-21 16:27:51 -06:00
427179996b
This allows nosqlbench docker image to run natively on Apple M1 and other ARM Linux environment
8 lines
178 B
Docker
8 lines
178 B
Docker
FROM eclipse-temurin:17-jdk
|
|
RUN apk --no-cache add curl
|
|
|
|
COPY nb5/target/nb5.jar nb5.jar
|
|
ENTRYPOINT ["java","-jar", "nb5.jar"]
|
|
RUN apk add --update udev
|
|
RUN mkdir -p /nosqlbench
|