-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Check for update in base images #3448
Comments
as the command contains double quotes
note that scheduled workflows only run on the default branch
Still trying to get to a working schedule workflow. The action DockerImageUpdateChecker seems to be active, but there are no runs yet. |
Fiddled with .github/workflows/docker_image_update_checker.yml so that it can be started manually. An error message should be written when the base image was updated. Let's wait until such an update occured and see how the output looks like. |
Also, when rebuilding an image, then dockerfile.snapshot should be used for installing the Perl modules from CPAN. |
When the check for changes in the base images is implemented then there will be fairly frequent rebuilds of Docker images. These rebuilds include the installation of CPAN distributions into the Docker image. Currently most of the CPAN dependencies are installed with their most current versions on CPAN. This is fine for infrequent builds as there the builds are tested before they are tagged and built automatically on Docker Hub. For rebuilding already released versions we want a more stable setup. Specifically we want that the same versions of CPAN distrubutions are installed into the rebuilt image. This can be achieved with cpanfile.snapshot support in Carton. See also #210. |
we want to build with otobo.web.dockerfile instead of Dockerfile
just because the default value is documented as {context}/Dockerfile
we want to build with otobo.web.dockerfile instead of Dockerfile
just because the default value is documented as {context}/Dockerfile
no need to build the kerberos-web image
in this case the tag is devel-11_1_test
Specifically image.source and image.version
TODO:
|
This needs to be tested again, especially as there were some changes done for #3673. |
In Docker Hub there are usually no automatic rebuilds of Images when a base images changes. But base images might change because there are security fixes. So it is interesting to be at least notified when a base image is updated.
There a several ways how to approach this. Let's try first https://github.com/marketplace/actions/docker-image-update-checker .
The text was updated successfully, but these errors were encountered: