Skip to content

Commit

Permalink
Dockerfile: Initial commit
Browse files Browse the repository at this point in the history
- Includes a makefile for easier operations

Signed-off-by: John McBride <john@opensauced.pizza>
  • Loading branch information
jpmcb committed Aug 3, 2023
1 parent b183145 commit 6790d4a
Show file tree
Hide file tree
Showing 4 changed files with 135 additions and 50 deletions.
113 changes: 66 additions & 47 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Expand Up @@ -14,10 +14,10 @@ anyhow = "1"
async-trait = "0.1"
dotenv = "0.15"
ndarray = "0.15"
ort = "1"
ort = { version = "1", features = ["load-dynamic"] }
qdrant-client = "1"
rayon = "1"
reqwest = "0.11"
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls"] }
serde = "1"
tokenizers = "0.13"
openai-api-rs = "0.1"
Expand All @@ -29,5 +29,5 @@ actix-web-lab = "0.19"
actix-rt = "2"
tracing-actix-web = "0.7"
env_logger = "0.10"
tokio = "1"
tokio = { version = "1", default-features = false }
actix-cors = "0.6.4"

0 comments on commit 6790d4a

Please sign in to comment.