Skip to content

Commit b824d34

Browse files
caposseleaustinabell
authored andcommitted
use rust:1.89.0-bookworm
1 parent 88c9fc9 commit b824d34

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

dockerfiles/agent.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ENV RUSTUP_HOME=/usr/local/rustup \
1919
# Install rust and target version (should match rust-toolchain.toml for best speed)
2020
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y \
2121
&& chmod -R a+w $RUSTUP_HOME $CARGO_HOME \
22-
&& rustup install 1.88
22+
&& rustup install 1.89
2323

2424
# Install protoc
2525
RUN curl -o protoc.zip -L https://github.com/protocolbuffers/protobuf/releases/download/v31.1/protoc-31.1-linux-x86_64.zip \

dockerfiles/broker.dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.88.0-bookworm AS init
1+
FROM rust:1.89.0-bookworm AS init
22

33
RUN apt-get -qq update && \
44
apt-get install -y -q clang
@@ -64,7 +64,7 @@ SHELL ["/bin/bash", "-c"]
6464
RUN cargo build --release --bin broker && \
6565
cp /src/target/release/broker /src/broker
6666

67-
FROM rust:1.88.0-bookworm AS runtime
67+
FROM rust:1.89.0-bookworm AS runtime
6868

6969
RUN mkdir /app/
7070

dockerfiles/distributor.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage
2-
FROM rust:1.88.0-bookworm AS init
2+
FROM rust:1.89.0-bookworm AS init
33

44
RUN apt-get -qq update && \
55
apt-get install -y -q clang

dockerfiles/indexer.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage
2-
FROM rust:1.88.0-bookworm AS init
2+
FROM rust:1.89.0-bookworm AS init
33

44
RUN apt-get -qq update && \
55
apt-get install -y -q clang

dockerfiles/order_generator.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage
2-
FROM rust:1.88.0-bookworm AS init
2+
FROM rust:1.89.0-bookworm AS init
33

44
RUN apt-get -qq update && \
55
apt-get install -y -q clang

dockerfiles/order_stream.dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.88.0-bookworm AS init
1+
FROM rust:1.89.0-bookworm AS init
22

33
RUN apt-get -qq update && \
44
apt-get install -y -q clang
@@ -64,7 +64,7 @@ SHELL ["/bin/bash", "-c"]
6464
RUN cargo build --release -p order-stream --bin order_stream && \
6565
cp /src/target/release/order_stream /src/order_stream
6666

67-
FROM rust:1.88.0-bookworm AS runtime
67+
FROM rust:1.89.0-bookworm AS runtime
6868

6969
RUN mkdir /app/
7070

dockerfiles/slasher.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage
2-
FROM rust:1.88.0-bookworm AS init
2+
FROM rust:1.89.0-bookworm AS init
33

44
RUN apt-get -qq update && \
55
apt-get install -y -q clang

0 commit comments

Comments
 (0)