File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
22
3- # NOTE: This script is not ran by default for the template docker image.
3+ # NOTE: This script is not run by default for the template docker image.
44# If you use a custom base image you can add your required system dependencies here.
5+ #
6+ # USAGE: This script can be used to install additional system packages or configurations:
7+ # - Jupyter kernels (R, Julia, Scala, etc.)
8+ # - Additional CUDA libraries or drivers
9+ # - System-level debugging tools (htop, nvtop, etc.)
10+ # - Custom compilers or build tools
11+ # - SSH keys or security configurations
12+ # - Custom Python versions or environments
13+ #
14+ # To use this script, uncomment the COPY and RUN commands in the Dockerfile:
15+ # COPY builder/setup.sh /setup.sh
16+ # RUN chmod +x /setup.sh && /setup.sh
517
618set -e # Stop script on error
719apt-get update && apt-get upgrade -y # Update System
You can’t perform that action at this time.
0 commit comments