awinml's picture
Upload Dockerfile
d6ed650 verified
raw
history blame
372 Bytes
# Use the official Python base image
FROM ghcr.io/huggingface/text-embeddings-inference:cpu-0.5
# Create and set the working directory in the container
WORKDIR /models
# Set the default command to run your app
CMD ["text-embeddings-inference", "--model-id", "BAAI/bge-small-en-v1.5", "--server", "--port", "7860", "--server.address", "0.0.0.0", "--log-level", "DEBUG"]