From 5819458c1715383cf53f31210e97213c5e0d08c9 Mon Sep 17 00:00:00 2001 From: Karma Riuk Date: Thu, 12 Jun 2025 17:09:41 +0200 Subject: [PATCH] updated readme --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 23009bc..118dc16 100644 --- a/README.md +++ b/README.md @@ -60,10 +60,15 @@ CRAB focuses on **Java** projects, rigorously curating pull-request “triplets 1. **Docker images** - - Build or pull the two images used by the handlers: + The repository includes two Dockerfiles (`maven.Dockerfile` and `gradle.Dockerfile`) at its root. Build the images locally from this directory: - - `crab-maven` (for Maven projects) - - `crab-gradle` (for Gradle projects) + ```bash + # Build the Maven handler image + docker build -f maven.Dockerfile -t crab-maven . + + # Build the Gradle handler image + docker build -f gradle.Dockerfile -t crab-gradle . + ``` ## Usage