nosqlbench/Dockerfile
weideng1 427179996b
Set base to 17-jdk so this image can run on arm64
This allows nosqlbench docker image to run natively on Apple M1 and other ARM Linux environment
2022-08-12 11:55:14 -06:00

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