Skip to content

Commit 09eb160

Browse files
committed
chore: downgrade CUDA images to 12.6.3
1 parent ef54be2 commit 09eb160

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile.server

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Start with a base image that includes CUDA
2-
FROM nvidia/cuda:12.9.0-devel-ubuntu22.04 AS builder
2+
FROM nvidia/cuda:12.6.3-devel-ubuntu22.04 AS builder
33

44
# Install necessary packages
55
RUN apt-get update && apt-get install -y \
@@ -47,7 +47,7 @@ RUN df -h
4747
RUN --mount=type=ssh CARGO_NET_GIT_FETCH_WITH_CLI=true cargo build -p moongate-server --release
4848

4949
# Runtime stage
50-
FROM nvidia/cuda:12.9.0-runtime-ubuntu22.04
50+
FROM nvidia/cuda:12.6.3-runtime-ubuntu22.04
5151

5252
# Copy the binary from the builder stage
5353
COPY --from=builder /usr/src/app/target/release/moongate-server /usr/local/bin/moongate-server

Dockerfile.toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Start with a base image that includes CUDA
2-
FROM nvidia/cuda:12.9.0-devel-ubuntu22.04 AS builder
2+
FROM nvidia/cuda:12.6.3-devel-ubuntu22.04 AS builder
33

44
# Install necessary packages
55
RUN apt-get update && DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get install -y \

0 commit comments

Comments
 (0)