Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Arch Linux
archlinux-docker
Commits
0b616a62
Verified
Commit
0b616a62
authored
Nov 07, 2020
by
hashworks
Browse files
Always build rootfs archives before the Dockerfiles
The Dockerfiles require them for their sha256sum.
parent
d177146b
Pipeline
#2820
passed with stages
in 3 minutes and 40 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
0b616a62
...
...
@@ -51,16 +51,16 @@ $(OUTPUTDIR)/base.tar.xz:
$(OUTPUTDIR)/base-devel.tar.xz
:
$(
call
rootfs,base-devel,base base-devel
)
$(OUTPUTDIR)/Dockerfile.base
:
$(OUTPUTDIR)/Dockerfile.base
:
$(OUTPUTDIR)/base.tar.xz
$(
call
dockerfile,base
)
$(OUTPUTDIR)/Dockerfile.base-devel
:
$(OUTPUTDIR)/Dockerfile.base-devel
:
$(OUTPUTDIR)/base-devel.tar.xz
$(
call
dockerfile,base-devel
)
.PHONY
:
docker-image-base
image-base
:
$(OUTPUTDIR)/base.tar.xz
$(OUTPUTDIR)/Dockerfile.base
image-base
:
$(OUTPUTDIR)/Dockerfile.base
docker build
-f
$(OUTPUTDIR)
/Dockerfile.base
-t
archlinux/archlinux:base
$(OUTPUTDIR)
.PHONY
:
docker-image-base-devel
image-base-devel
:
$(OUTPUTDIR)/base-devel.tar.xz
$(OUTPUTDIR)/Dockerfile.base-devel
image-base-devel
:
$(OUTPUTDIR)/Dockerfile.base-devel
docker build
-f
$(OUTPUTDIR)
/Dockerfile.base-devel
-t
archlinux/archlinux:base-devel
$(OUTPUTDIR)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment