Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(bolt): upgrade rust to 1.77.2 #768

Merged
merged 1 commit into from
May 15, 2024
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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM clux/muslrust:1.75.0 AS build
FROM clux/muslrust:1.77.2 AS build
RUN cargo new --bin /app
WORKDIR /app
COPY Cargo.toml ./
Expand Down
2 changes: 1 addition & 1 deletion lib/bolt/core/src/dep/cargo/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ pub async fn build<'a, T: AsRef<str>>(ctx: &ProjectContext, opts: BuildOpts<'a,
r#"
# syntax=docker/dockerfile:1.2

FROM rust:1.72-slim
FROM rust:1.77.2-slim

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

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.73.0
FROM clux/muslrust:1.77.2

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