Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
debian
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Docker Build Images
debian
Compare revisions
5ecc848882bd45d50660f50923418aa495b931bd to c964e799ea0e0eaa9532eab0863fa38049310a3d
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
build-docker/debian
Select target project
No results found
c964e799ea0e0eaa9532eab0863fa38049310a3d
Select Git revision
Branches
feature/go-binaries
master
Swap
Target
build-docker/debian
Select target project
build-docker/debian
1 result
5ecc848882bd45d50660f50923418aa495b931bd
Select Git revision
Branches
feature/go-binaries
master
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Don't cache Docker layers
· ac76f4a4
Alexander A. Klimov
authored
3 years ago
ac76f4a4
Merge branch 'docker-cache' into 'master'
· c964e799
Julian Brost
authored
3 years ago
Don't cache Docker layers See merge request
!6
c964e799
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
image.mk
+1
-2
1 addition, 2 deletions
image.mk
with
1 addition
and
2 deletions
image.mk
View file @
c964e799
...
...
@@ -22,11 +22,10 @@ endif
all
:
pull build
pull
:
docker pull
"
$(
IMAGE
)
:
$(
VARIANT
)
"
||
true
docker pull
"
$(
FROM
)
"
build
:
docker build
--cache-from
"
$(
IMAGE
)
:
$(
VARIANT
)
"
--tag
"
$(
IMAGE
)
:
$(
VARIANT
)
"
.
docker build
--tag
"
$(
IMAGE
)
:
$(
VARIANT
)
"
.
ifdef
IMAGE_EXTRA_TAG
docker tag
"
$(
IMAGE
)
:
$(
VARIANT
)
"
"
$(
IMAGE
)
:
$(
IMAGE_EXTRA_TAG
)
"
endif
...
...
This diff is collapsed.
Click to expand it.