Skip to content

Commit

Permalink
adding a Dockerfile to run artio build in a container
Browse files Browse the repository at this point in the history
  • Loading branch information
lucianoviana committed Oct 17, 2024
1 parent 7cddbfd commit a54a713
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit a54a713

Please sign in to comment.