Drop erroneous oci- prefix for image-base{,-devel} targets

The targets never had a docker/oci prefix. Update the PHONY targets in
the Makefile and the README.

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
This commit is contained in:
Emil Velikov 2023-08-07 16:19:34 +01:00 committed by Justin Kromlinger
parent 8589e40bd8
commit 615bfa55ea
No known key found for this signature in database
GPG Key ID: 69EF6D9E49A64EB8
2 changed files with 5 additions and 5 deletions

View File

@ -66,10 +66,10 @@ $(OUTPUTDIR)/Dockerfile.base-devel: $(OUTPUTDIR)/base-devel.tar.zst
# The following is for local builds only, it is not used by the CI/CD pipeline
.PHONY: oci-image-base
.PHONY: image-base
image-base: $(OUTPUTDIR)/Dockerfile.base
${OCITOOL} build -f $(OUTPUTDIR)/Dockerfile.base -t archlinux/archlinux:base $(OUTPUTDIR)
.PHONY: oci-image-base-devel
.PHONY: image-base-devel
image-base-devel: $(OUTPUTDIR)/Dockerfile.base-devel
${OCITOOL} build -f $(OUTPUTDIR)/Dockerfile.base-devel -t archlinux/archlinux:base-devel $(OUTPUTDIR)

View File

@ -43,9 +43,9 @@ Install the following Arch Linux packages:
Make sure your user can directly interact with Podman (i.e. `podman info` works).
### Usage
Run `make oci-image-base` to build the `archlinux:base` image with the
`base` meta package installed. You can also run `make oci-image-base-devel` to
build the image `archlinux:base-devel` which additionally has the `base-devel` group installed.
Run `make image-base` to build the `archlinux:base` image with the `base` meta
package installed. You can also run `make image-base-devel` to build the image
`archlinux:base-devel` which additionally has the `base-devel` group installed.
## Pipeline