Skip to content
Merged
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 infra/default-builds/dockerfiles/test-ds-echo/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM clux/muslrust:1.77.2-stable AS build
FROM clux/muslrust:1.80.0-stable AS build
RUN cargo new --bin /app
WORKDIR /app
COPY Cargo.toml ./
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM clux/muslrust:1.77.2-stable AS build
FROM clux/muslrust:1.80.0-stable AS build
RUN cargo new --bin /app
WORKDIR /app
COPY Cargo.toml ./
Expand Down
4 changes: 2 additions & 2 deletions lib/bolt/core/src/dep/cargo/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ pub async fn build<'a, T: AsRef<str>>(ctx: &ProjectContext, opts: BuildOpts<'a,
r#"
# syntax=docker/dockerfile:1.2

FROM rust:1.77.2-slim AS rust
FROM rust:1.80.0-slim AS rust

RUN apt-get update && apt-get install -y protobuf-compiler pkg-config libssl-dev g++ git

Expand Down Expand Up @@ -437,7 +437,7 @@ pub async fn build_tests<'a, T: AsRef<str>>(
r#"
# syntax=docker/dockerfile:1.2

FROM rust:1.77.2-slim AS build
FROM rust:1.80.0-slim AS build

RUN apt-get update && apt-get install -y protobuf-compiler pkg-config libssl-dev g++ git

Expand Down
2 changes: 1 addition & 1 deletion lib/job-runner/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM clux/muslrust:1.77.2-stable
FROM clux/muslrust:1.80.0-stable

WORKDIR /app
COPY Cargo.toml Cargo.lock .
Expand Down