Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion mk/docker.mk
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ REVISION ?= $(shell git rev-parse HEAD)
include $(CURDIR)/versions.mk

# Supported OSs by architecture
AMD64_TARGETS := ubuntu20.04 ubuntu18.04 ubuntu16.04 debian10 debian9
AMD64_TARGETS := ubuntu22.04 ubuntu20.04 ubuntu18.04 ubuntu16.04 debian10 debian9
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same comment as on NVIDIA/nvidia-container-toolkit#1004

Do we want to add arm64 builds here too?

X86_64_TARGETS := centos7 centos8 rhel7 rhel8 amazonlinux2 opensuse-leap15.1
PPC64LE_TARGETS := ubuntu18.04 ubuntu16.04 centos7 centos8 rhel7 rhel8
ARM64_TARGETS := ubuntu18.04
Expand Down Expand Up @@ -125,6 +125,10 @@ docker-amd64-verify: $(patsubst %, %-verify, $(AMD64_TARGETS)) \
--debian%: OS := debian
--amazonlinux%: OS := amazonlinux

# private ubuntu target with overrides
--ubuntu22.04%: WITH_TIRPC = yes
--ubuntu22.04%: WITH_LIBELF = yes

# private centos target with overrides
--centos%: OS := centos
--centos%: WITH_TIRPC = yes
Expand Down