Skip to content

Commit 251f08d

Browse files
committed
docs: add usage comments to setup.sh
Signed-off-by: pandyamarut <[email protected]>
1 parent e499597 commit 251f08d

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

builder/setup.sh

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
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

618
set -e # Stop script on error
719
apt-get update && apt-get upgrade -y # Update System

0 commit comments

Comments
 (0)