Replies: 1 comment 1 reply
-
I believe the project Docker images are re-built once daily by default, and the To continue with your https://github.com/apache/commons-cli example, we can look at the last two commits on the At the time of writing, the two latest commits to https://github.com/apache/commons-cli/tree/master branch are:
If you search for the commit hash in the build logs for each day, you'll find:
|
Beta Was this translation helpful? Give feedback.
-
I see many project
Dockerfile
s clone an actively developed branch:This creates an image that one cannot update to align with the most recent changes in the external repository. That is,
docker build
will not update the image even if https://github.com/apache/commons-cli is updated. Shouldn't this cloning operation be a part ofbuild.sh
instead? Or, put another way, how can I make suredocker build -t foo . && docker run -it foo
always generates fuzzer scripts using the tip of the remote code base?Beta Was this translation helpful? Give feedback.
All reactions