Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion netra/api.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ COPY scout/go.mod scout/main.go ./
RUN go mod tidy && go build -o scout_bin main.go

# Stage 2: Rust Builder (LogCruncher)
FROM rust:1.75-slim AS rust-builder
FROM rust:1.93-slim AS rust-builder
WORKDIR /app
COPY guard/ .
RUN cargo build --release
Expand Down
2 changes: 1 addition & 1 deletion netra/worker.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ COPY scout/go.mod scout/main.go ./
RUN go mod tidy && go build -o scout_bin main.go

# Stage 2: Rust Builder (LogCruncher)
FROM rust:1.75-slim AS rust-builder
FROM rust:1.93-slim AS rust-builder
WORKDIR /app
COPY guard/ .
RUN cargo build --release
Expand Down
Loading