From ac7b33b803c2530df6c7f24252fb4e714c9bd07f Mon Sep 17 00:00:00 2001 From: Vigith Maurice Date: Sun, 29 Sep 2024 20:16:03 -0700 Subject: [PATCH] chore: rename monovertex in Dockerfile (#2101) Signed-off-by: Vigith Maurice --- rust/Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/rust/Dockerfile b/rust/Dockerfile index 62208944f..3fcd606fa 100644 --- a/rust/Dockerfile +++ b/rust/Dockerfile @@ -1,6 +1,6 @@ # Use multi-stage builds to keep the final image small # Use an official Rust image for the build stage -FROM rust:1.79-bookworm as builder +FROM rust:1.80-bookworm as builder RUN curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash @@ -20,8 +20,8 @@ COPY ./backoff/Cargo.toml ./backoff/Cargo.toml RUN cargo new numaflow-models COPY ./numaflow-models/Cargo.toml ./numaflow-models/Cargo.toml -RUN cargo new monovertex -COPY numaflow-core/Cargo.toml ./monovertex/Cargo.toml +RUN cargo new numaflow-core +COPY numaflow-core/Cargo.toml ./numaflow-core/Cargo.toml RUN cargo new serving COPY ./serving/Cargo.toml ./serving/Cargo.toml @@ -39,9 +39,9 @@ COPY ./servesink/src ./servesink/src COPY ./backoff/src ./backoff/src COPY ./numaflow-models/src ./numaflow-models/src COPY ./serving/src ./serving/src -COPY numaflow-core/src ./monovertex/src -COPY numaflow-core/build.rs ./monovertex/build.rs -COPY numaflow-core/proto ./monovertex/proto +COPY numaflow-core/src ./numaflow-core/src +COPY numaflow-core/build.rs ./numaflow-core/build.rs +COPY numaflow-core/proto ./numaflow-core/proto # Build the real binaries RUN touch src/bin/main.rs && \