Squashed 'vendor/ruvector/' content from commit b64c2172
git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
This commit is contained in:
22
examples/google-cloud/Dockerfile.simple
Normal file
22
examples/google-cloud/Dockerfile.simple
Normal file
@@ -0,0 +1,22 @@
|
||||
# Simple RuVector Cloud Run Dockerfile
|
||||
# Copies pre-built binary for fast deployment
|
||||
|
||||
FROM debian:bookworm-slim
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
libssl3 \
|
||||
ca-certificates \
|
||||
curl \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Copy pre-built binary
|
||||
COPY target/release/gpu-benchmark ./
|
||||
|
||||
ENV PORT=8080
|
||||
ENV RUST_LOG=info
|
||||
|
||||
EXPOSE 8080
|
||||
|
||||
CMD ["./gpu-benchmark", "serve", "--port", "8080"]
|
||||
Reference in New Issue
Block a user