This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# To build | |
# DOCKER_BUILDKIT=0 docker build -f Dockerfile --platform linux/arm64 . | |
# OR | |
# docker buildx build -f Dockerfile --platform linux/arm64 . | |
FROM nvcr.io/nvidia/l4t-base:r32.6.1 | |
# | |
# setup environment | |
# | |
ENV DEBIAN_FRONTEND=noninteractive | |
ENV CUDA_HOME="/usr/local/cuda" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#By www.danhilltech.com | |
#package manager get fastest server + partners | |
sudo apt-get update | |
sudo apt-get install aptitude openssh-server | |
#switch to ssh | |
sudo sh -c 'echo "dan ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers' |