Skip to content
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ COPY --from=planner /app/recipe.json recipe.json
RUN cargo chef cook --release --recipe-path recipe.json

COPY . .
RUN cargo build --release --bin bootstrap
RUN cargo build --release --bin bootstrap --features="aws"
RUN cargo build --release --bin preload
# The binary will be at target/release/bootstrap (or your binary name)
RUN cp target/release/bootstrap bootstrap 2>/dev/null || \
cp target/release/embedding_service bootstrap
cp target/release/serverless_vectorizer bootstrap

RUN cp target/release/preload preload

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Serverless Vectorizer

[![CI](https://github.com/johnnywale/serverless-vectorizer/actions/workflows/ci.yml/badge.svg)](https://github.com/johnnywale/serverless-vectorizer/actions/workflows/ci.yml)
[![CI](https://github.com/johnnywale/serverless-vectorizer/actions/workflows/test-and-tag.yml/badge.svg)](https://github.com/johnnywale/serverless-vectorizer/actions/workflows/ci.yml)
[![Release](https://img.shields.io/github/v/release/johnnywale/serverless-vectorizer)](https://github.com/johnnywale/serverless-vectorizer/releases)
[![License](https://img.shields.io/github/license/johnnywale/serverless-vectorizer)](LICENSE-MIT)
[![Docker Pulls](https://img.shields.io/docker/pulls/johnnywale/serverless-vectorizer)](https://hub.docker.com/r/johnnywale/serverless-vectorizer)
Expand Down