This tool provides a mechanism to make security updates to docker images at scale. The tool searches github for declared docker images and sends pull requests to projects that are not using the desired version of the requested docker image.
Docker builds images using a declared Dockerfile. Within the Dockerfile,
there is a FROM
declaration that specifies the base image and a tag that
will be used as the starting layers for the new image. If the base image that
FROM
depends on is rebuilt, the Docker images that depend on it will never
be updated with the newer layers. This becomes a major problem if the reason
the base image was updated was to fix a security vulnerability. All Docker
images are often based on operating system libraries and these get patched
for security updates quite frequently. This tool, the Dockerfile Image Updater
was created to automatically make sure that child images are updated when the
images they depend on get updated.
The tool has three modes
-
all
- Reads store that declares the docker images and versions that you intend others to use.Example:
export git_api_url=https://api.github.com export git_api_token=my_github_token docker run --rm -e git_api_token -e git_api_url \ salesforce/dockerfile-image-update all image-to-tag-store
-
parent
- Searches github for images that use a specified image name and sends pull requests if the image tag doesn't match intended tag. The intended image with tag is passed in the command line parameters. The intended image-to-tag mapping is persisted in a store in a specified git repository under the token owner.Example:
export git_api_url=https://api.github.com export git_api_token=my_github_token docker run --rm -e git_api_token -e git_api_url \ salesforce/dockerfile-image-update parent my_org/my_image v1.0.1 \ image-to-tag-store
-
child
- Given a specific git repo, sends a pull request to update the image to a given version. You can optionally persist the image version combination in the image-to-tag store.Example:
export git_api_url=https://api.github.com export git_api_token=my_github_token docker run --rm -e git_api_token -e git_api_url \ salesforce/dockerfile-image-update child my_gh_org/my_gh_repo \ my_image_name v1.0.1
In environment variables, please provide:
git_api_token
: This is your GitHub token to your account. Set these privileges by: going to your GitHub account --> settings --> Personal access tokens --> checkrepo
anddelete_repo
.git_api_url
: This is the Endpoint URL of the GitHub API. In general GitHub, this ishttps://api.github.com/
; for Enterprise, this should behttps://hostname/api/v3
. (this variable is optional; you can provide it through the command line.)
- This tool may create a LOT of forks in your account. All pull requests created are through a fork on your own account.
- We currently do not operate on forked repositories due to limitations in forking a fork on GitHub. We should invest some time in doing this right. See issue #21
- Submodules are separate repositories and get their own pull requests.
Our recommendation is to run it as a docker container:
export git_api_url=https://api.github.com
export git_api_token=my_github_token
docker run --rm -e git_api_token -e git_api_url \
salesforce/dockerfile-image-update <COMMAND> <PARAMETERS>
usage: dockerfile-image-update [-h] [-o ORG] [-b BRANCH] [-g GHAPI] [-f] [-m M] [-c C] COMMAND ...
Image Updates through Pull Request Automator
optional arguments:
-h, --help show this help message and exit
-o ORG, --org ORG search within specific organization (default: all of github)
-b BRANCH, --branch BRANCH make pull requests for given branch name (default: master)
-g GHAPI, --ghapi GHAPI link to github api; overrides environment variable
-f, --auto-merge NOT IMPLEMENTED / set to automatically merge pull requests if available
-m PULL_REQ_MESSAGE message to provide for pull requests
-c COMMIT_MESSAGE additional commit message for the commits in pull requests
subcommands:
Specify which feature to perform
COMMAND FEATURE
all updates all repositories' Dockerfiles
child updates one specific repository with given tag
parent updates all repositories' Dockerfiles with given base image
Specify an image-to-tag store (a repository name on GitHub that contains a file called store.json); looks through the JSON file and checks/updates all the base images in GitHub to the tag in the store.
usage: dockerfile-image-update all [-h] <IMG_TAG_STORE>
positional arguments:
<IMG_TAG_STORE> REQUIRED
optional arguments:
-h, --help show this help message and exit
Forcefully updates a repository's Dockerfile(s) to given tag. If specified a store, it will also forcefully update the store.
usage: dockerfile-image-update child [-h] [-s <IMG_TAG_STORE>] <GIT_REPO> <IMG> <FORCE_TAG>
positional arguments:
<GIT_REPO> REQUIRED
<IMG> REQUIRED
<FORCE_TAG> REQUIRED
optional arguments:
-h, --help show this help message and exit
-s <IMG_TAG_STORE> OPTIONAL
Given an image, tag, and store, it will create pull requests for any Dockerfiles that has the image as a base image and an outdated tag. It also updates the store.
usage: dockerfile-image-update parent [-h] <IMG> <TAG> <IMG_TAG_STORE>
positional arguments:
<IMG> REQUIRED
<TAG> REQUIRED
<IMG_TAG_STORE> REQUIRED
optional arguments:
-h, --help show this help message and exit
git clone https://github.com/salesforce/dockerfile-image-update.git
cd dockerfile-image-update
mvn clean install
cd dockerfile-image-update/target
java -jar dockerfile-image-update-1.0-SNAPSHOT.jar <COMMAND> <PARAMETERS>
Under dockerfile-image-update/src/main/java/com/salesforce/dva/dockerfileimageupdate/subcommands/impl,
create a new class YOUR_FEATURE.java
.
Make sure it implements ExecutableWithNamespace
and has the SubCommand
annotation with a help
, requiredParams
, and optionalParams
.
Then, under the execute
method, code what you want this tool to do.
Run unit tests by running mvn test
.
Before you run the integration tests (locally):
-
Make sure that you have access to the github orgs specified in TestCommon.ORGS. You likely will need to change it to three orgs where you have permissions to create repositories.
-
Make sure you have
git_api_url=https://api.github.com
in/dockerfile-image-update-itest/itest.env
, or set it to your internal GitHub Enterprise. -
Make sure you have a secret file which contains the
git_api_token
. The token needs to havedelete_repo, repo
permissions. You can generate your token by going to personal access tokens in GitHub. Once you have your token place it in a file:echo git_api_token=[copy personal access token here] > ${HOME}/.dfiu-itest-token
-
Export the following environment variable to point to the file:
export user_itest_secrets_file_secret=${HOME}/.dfiu-itest-token
-
Run integration tests by running
make itest-local-changes
We currently use GitHub Actions and Releases. In order to collect dependency updates from dependabot and any other minor changes, we've switched to a process to manually trigger the release process. For now, that looks like the following:
- PRs continually get updated with labels by Pull Request Labeler and that helps set us up for nice release notes by Release Drafter.
- Decide what version you desire to have. If you want to bump the major or minor
version then you need to bump the
MVN_SNAPSHOT_VERSION
in the Makefile and in the Dockerfile before proceeding to the next steps. For exampleMVN_SNAPSHOT_VERSION=1.0-SNAPSHOT
toMVN_SNAPSHOT_VERSION=2.0-SNAPSHOT
. - After PRs have been merged to the primary branch, go to the Actions tab
and trigger the
Release new version
Workflow. This will build, integration test, deploy the latest version to Docker Hub and Maven Central, and tag that commit hash with the next semantic version. - Once that release has been tagged you can go to the draft release which
is continually updated by Release Drafter
and select the latest tag to associate with that release. Change the
version to reflect the same version as the tag (
1.0.${NEW_VERSION}
). Ideally we'll automate this to run at the end of the triggered workflow.
If you'd like to check Code Climate results locally you can run the following:
docker run --interactive --tty --rm \
--env CODECLIMATE_CODE="$(pwd)" \
--volume "$(pwd)":/code \
--volume /var/run/docker.sock:/var/run/docker.sock \
--volume /tmp/cc:/tmp/cc \
codeclimate/codeclimate analyze README.md