From 16a1d04f3919533352b6e89b7b3b9d84429a7abc Mon Sep 17 00:00:00 2001 From: Johnson Sun Date: Mon, 16 Sep 2024 03:47:27 +0800 Subject: [PATCH] fix(aloha_ws): Fix dockerfile deprecated ENV syntax Warning message: LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format --- aloha_ws/docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aloha_ws/docker/Dockerfile b/aloha_ws/docker/Dockerfile index c7d463e0..70635377 100644 --- a/aloha_ws/docker/Dockerfile +++ b/aloha_ws/docker/Dockerfile @@ -81,8 +81,8 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=private \ # Setup the required capabilities for the container runtime # Ref: https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/docker-specialized.html#driver-capabilities -ENV NVIDIA_VISIBLE_DEVICES all -ENV NVIDIA_DRIVER_CAPABILITIES all +ENV NVIDIA_VISIBLE_DEVICES=all +ENV NVIDIA_DRIVER_CAPABILITIES=all # Install Vulkan config files # Ref: https://gitlab.com/nvidia/container-images/vulkan