-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Use vLLM's vllm-openai server image as the base | ||
FROM vllm/vllm-openai:latest | ||
|
||
# Set working directory | ||
WORKDIR /workspace | ||
|
||
# Install necessary build dependencies for sentencepiece | ||
RUN apt-get update && apt-get install -y \ | ||
pkg-config \ | ||
cmake \ | ||
build-essential | ||
|
||
# Copy functionary code and requirements into workspace | ||
COPY . . | ||
|
||
# Install additional Python dependencies | ||
RUN --mount=type=cache,target=/root/.cache/pip \ | ||
python3 -m pip install -r requirements.txt | ||
|
||
# Override the VLLM entrypoint with the functionary server | ||
ENTRYPOINT ["python3", "server_vllm.py", "--model", "meetkai/functionary-small-v3.2", "--host", "0.0.0.0", "--max-model-len", "8192"] |