diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..44efcdf --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,8 @@ +version: "3" +services: + app: + image: gradle:jdk8 + working_dir: /app + volumes: + - .:/app + command: ["gradle", "clean", "test"] \ No newline at end of file