Print docker history summary in build actions (#898)
It is useful to know what the size of each layer is after the image has been built.
This commit is contained in:
parent
d963389430
commit
12153f737e
1 changed files with 4 additions and 0 deletions
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
@ -102,6 +102,10 @@ jobs:
|
|||
run: |
|
||||
docker images discourse/base
|
||||
|
||||
- name: Print `docker history` summary for main branch image
|
||||
run: |
|
||||
docker history discourse/base:2.0.${{ env.TIMESTAMP }}-main-${{ matrix.arch }}
|
||||
|
||||
- name: Print compressed summary
|
||||
if: github.event_name == 'pull_request' && matrix.arch == 'amd64'
|
||||
run: |
|
||||
|
|
Loading…
Add table
Reference in a new issue