Skip to content

Commit 67af246

Browse files
committed
Reword
1 parent e0ce303 commit 67af246

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ A re-implementation of [Testcontainers Image-Builder](https://java.testcontainer
88
* Allows passing a custom logger to the image build - [testcontainers-java#3093](https://github.com/testcontainers/testcontainers-java/issues/3093)
99
* Allows using ``ARG``s for ``FROM`` - [testcontainers-java#3238](https://github.com/testcontainers/testcontainers-java/issues/3238)
1010
* Brings a custom [build-context](https://docs.docker.com/build/building/context/) processor
11-
* Works more efficient and reliable than the default implementation (utilizes [JGit](https://github.com/eclipse-jgit/jgit))
12-
* uses ``.gitignore`` if available
11+
* Works more efficient and reliable than the default implementation because it utilizes [JGit](https://github.com/eclipse-jgit/jgit)
12+
* uses the ``.gitignore`` if available
1313
* Allows adding custom ignores
1414
* This way the build-context can be fine tuned in a way that the build cache works very efficiently (e.g. only re-built when actual code that matters changes)
1515
* Makes it possible to modify files that are transferred
1616
* Provide a compatibility layer to emulate [``COPY --parents``](https://docs.docker.com/reference/dockerfile/#copy---parents) (which is currently not supported by Docker out of the box)
1717
* Do not pull images that are declared inside the Dockerfile
1818
* Makes logger non generic and therefore controllable
19-
* Did some general code cleanup
19+
* Some general code cleanup and performance improvements
2020

2121
A common use case - that can also be seen [inside the demo](./testcontainers-advanced-imagebuilder-demo/src/main/java/software/xdev/Application.java) - is for creating an image - used in e.g. Integration tests - for an application that is also inside the same repo.
2222

0 commit comments

Comments
 (0)