sparkleman commited on
Commit
1756241
·
1 Parent(s): 5143c72
Files changed (1) hide show
  1. Dockerfile +6 -3
Dockerfile CHANGED
@@ -1,10 +1,13 @@
1
  ARG CUDA_IMAGE="12.4.0-runtime-ubuntu22.04"
2
  FROM nvidia/cuda:${CUDA_IMAGE}
3
 
4
- RUN apt update && apt install --no-install-recommends -y \
 
 
5
  build-essential \
6
- git \ &&
7
- apt clean && rm -rf /var/lib/apt/lists/*
 
8
 
9
  COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
10
 
 
1
  ARG CUDA_IMAGE="12.4.0-runtime-ubuntu22.04"
2
  FROM nvidia/cuda:${CUDA_IMAGE}
3
 
4
+ RUN <<EOF
5
+ apt update
6
+ apt install --no-install-recommends -y \
7
  build-essential \
8
+ git
9
+ apt clean && rm -rf /var/lib/apt/lists/*
10
+ EOF
11
 
12
  COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
13