From a54a7135c04a91199bb2e8ea2f232ba4244b54d3 Mon Sep 17 00:00:00 2001 From: Luciano Viana Date: Mon, 14 Oct 2024 16:21:28 +0200 Subject: [PATCH] adding a Dockerfile to run artio build in a container --- Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000..8f32d942c4 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +# the idea of this dockerfile is to allow running artio build in multiple containers in order to increase the chances of a failing test locally +FROM alpine/java:21-jdk as artio-image +ENV GRADLE_OPTS="-Dorg.gradle.daemon=false -Dfix.core.debug=STATE_CLEANUP,FIX_MESSAGE,REPLAY,FIXP_SESSION,FIXP_BUSINESS -Dfix.core.ci=true" +ADD . artio-src +WORKDIR artio-src +ENTRYPOINT ./gradlew clean test