Skip to content

Commit

Permalink
chore: update to rust 1.80 (#74)
Browse files Browse the repository at this point in the history
Signed-off-by: Vigith Maurice <vigith@gmail.com>
  • Loading branch information
vigith authored Sep 4, 2024
1 parent 4a5a393 commit a426c6f
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion examples/batchmap-cat/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.75-bookworm AS build
FROM rust:1.80-bookworm AS build

RUN apt-get update
RUN apt-get install protobuf-compiler -y
Expand Down
2 changes: 1 addition & 1 deletion examples/batchmap-flatmap/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.75-bookworm AS build
FROM rust:1.80-bookworm AS build

RUN apt-get update
RUN apt-get install protobuf-compiler -y
Expand Down
2 changes: 1 addition & 1 deletion examples/map-cat/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.75-bookworm AS build
FROM rust:1.80-bookworm AS build

RUN apt-get update
RUN apt-get install protobuf-compiler -y
Expand Down
4 changes: 2 additions & 2 deletions examples/map-tickgen-serde/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.75-bookworm AS build
FROM rust:1.80-bookworm AS build

RUN apt-get update
RUN apt-get install protobuf-compiler -y
Expand All @@ -17,4 +17,4 @@ FROM debian:bookworm AS map-tickgen-serde
COPY --from=build /numaflow-rs/examples/map-tickgen-serde/target/release/server .

# set the startup command to run your binary
CMD ["./server"]
CMD ["./server"]
2 changes: 1 addition & 1 deletion examples/mapt-event-time-filter/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.75-bookworm AS build
FROM rust:1.80-bookworm AS build

RUN apt-get update
RUN apt-get install protobuf-compiler -y
Expand Down
4 changes: 2 additions & 2 deletions examples/reduce-counter/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.70 AS build
FROM rust:1.80 AS build

RUN apt-get update
RUN apt-get install protobuf-compiler -y
Expand All @@ -17,4 +17,4 @@ FROM rust AS reduce-counter
COPY --from=build /numaflow-rs/examples/reduce-counter/target/release/server .

# set the startup command to run your binary
CMD ["./server"]
CMD ["./server"]
4 changes: 2 additions & 2 deletions examples/sideinput/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.70 AS build
FROM rust:1.80 AS build

RUN apt-get update
RUN apt-get install protobuf-compiler -y
Expand All @@ -17,4 +17,4 @@ FROM rust AS sideinput
COPY --from=build /numaflow-rs/examples/sideinput/target/release/server .

# set the startup command to run your binary
CMD ["./server"]
CMD ["./server"]
4 changes: 2 additions & 2 deletions examples/simple-source/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.76-bookworm AS build
FROM rust:1.80-bookworm AS build

RUN apt-get update
RUN apt-get install protobuf-compiler -y
Expand All @@ -17,4 +17,4 @@ FROM debian:bookworm AS simple-source
COPY --from=build /numaflow-rs/examples/simple-source/target/release/server .

# set the startup command to run your binary
CMD ["./server"]
CMD ["./server"]
4 changes: 2 additions & 2 deletions examples/sink-log/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.76-bookworm AS build
FROM rust:1.80-bookworm AS build

RUN apt-get update
RUN apt-get install protobuf-compiler -y
Expand All @@ -17,4 +17,4 @@ FROM debian:bookworm AS simple-source
COPY --from=build /numaflow-rs/examples/sink-log/target/release/server .

# set the startup command to run your binary
CMD ["./server"]
CMD ["./server"]
2 changes: 1 addition & 1 deletion examples/source-transformer-now/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.75-bookworm AS build
FROM rust:1.80-bookworm AS build

RUN apt-get update
RUN apt-get install protobuf-compiler -y
Expand Down

0 comments on commit a426c6f

Please sign in to comment.