mirror of
https://github.com/koush/scrypted.git
synced 2026-02-03 14:13:28 +00:00
12 lines
383 B
Docker
12 lines
383 B
Docker
ARG BASE="ghcr.io/koush/scrypted-common:noble-nvidia"
|
|
FROM $BASE
|
|
|
|
ENV SCRYPTED_DOCKER_FLAVOR="nvidia"
|
|
|
|
ENV NVIDIA_DRIVER_CAPABILITIES=all
|
|
ENV NVIDIA_VISIBLE_DEVICES=all
|
|
|
|
# nvidia cudnn/libcublas etc.
|
|
# for some reason this is not provided by the nvidia container toolkit
|
|
RUN curl https://raw.githubusercontent.com/koush/scrypted/main/install/docker/install-nvidia-graphics.sh | bash
|