-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #278 from nvonpentz/dockerfile
Add vLLM Dockerfile
- Loading branch information
Showing
1 changed file
with
25 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,25 @@ | ||
# Use vLLM's vllm-openai server image as the base | ||
FROM vllm/vllm-openai:v0.6.3.post1 | ||
|
||
# Define a build argument for the working directory, defaulting to /workspace | ||
ARG WORKDIR_ARG=/workspace | ||
|
||
# Set the working directory | ||
WORKDIR ${WORKDIR_ARG} | ||
|
||
# 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 .[vllm] | ||
|
||
# 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"] | ||
CMD [] |