Skip to content

Commit

Permalink
fix(aloha_ws): Fix dockerfile deprecated ENV syntax
Browse files Browse the repository at this point in the history
Warning message:

    LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format
  • Loading branch information
j3soon committed Sep 15, 2024
1 parent 8ee8c91 commit 16a1d04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aloha_ws/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 16a1d04

Please sign in to comment.