Skip to content

Commit

Permalink
chore: rename monovertex in Dockerfile (#2101)
Browse files Browse the repository at this point in the history
Signed-off-by: Vigith Maurice <[email protected]>
  • Loading branch information
vigith committed Sep 30, 2024
1 parent 66c8613 commit ac7b33b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions rust/Dockerfile
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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
Expand All @@ -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 && \
Expand Down

0 comments on commit ac7b33b

Please sign in to comment.