Skip to content

Commit bbff729

Browse files
committed
CentOS 8 is EOL, use CentOS Stream 8
1 parent 5ba93d4 commit bbff729

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ TARGET ?= local
22

33
export DOCKER_BUILDKIT = 1
44

5-
all: amazon amazon2 centos7 centos8 debian
5+
all: amazon amazon2 centos7 centosstream8 debian
66

77
.PHONY: test
88
test:
@@ -31,9 +31,9 @@ centos7: build
3131
docker build -t centos7-builder --target ${TARGET} --build-arg CONTAINER_VERSION=centos:7 --build-arg OS_TYPE=rpm_based -f build/Dockerfile .
3232
docker run --rm -v $(shell pwd)/build/package/rpm:/rpm -v $(shell pwd)/build_output:/build_output centos7-builder
3333

34-
centos8: build
35-
docker build -t centos8-builder --target ${TARGET} --build-arg CONTAINER_VERSION=centos:8 --build-arg OS_TYPE=rpm_based -f build/Dockerfile .
36-
docker run --rm -v $(shell pwd)/build/package/rpm:/rpm -v $(shell pwd)/build_output:/build_output centos8-builder
34+
centosstream8: build
35+
docker build -t centosstream8-builder --target ${TARGET} --build-arg CONTAINER_VERSION=quay.io/centos/centos:stream8 --build-arg OS_TYPE=rpm_based -f build/Dockerfile .
36+
docker run --rm -v $(shell pwd)/build/package/rpm:/rpm -v $(shell pwd)/build_output:/build_output centosstream8-builder
3737

3838
debian: build
3939
docker build -t debian-builder --target ${TARGET} --build-arg OS_TYPE=deb_based -f build/Dockerfile .

0 commit comments

Comments
 (0)