Skip to content

Commit

Permalink
revert file
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcavazos committed Jun 6, 2023
1 parent 1c5570c commit f35a4ae
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -252,13 +252,7 @@ def _invoke_docker_build_and_push(self, container_image_name):
build.steps = []
step = cloudbuild.BuildStep()
step.name = 'gcr.io/kaniko-project/executor:latest'
# Disable compression caching to allow for large images to be cached.
# See: https://github.com/GoogleContainerTools/kaniko/issues/1669
step.args = [
'--destination=' + container_image_name,
'--cache=true',
'--compressed-caching=false',
]
step.args = ['--destination=' + container_image_name, '--cache=true']
step.dir = SOURCE_FOLDER

build.steps.append(step)
Expand Down

0 comments on commit f35a4ae

Please sign in to comment.