init commit

This commit is contained in:
2026-04-13 15:24:48 +00:00
commit 3293502548
2 changed files with 45 additions and 0 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM vllm/vllm-openai:v0.19.0
# Download and extract Eagle3 drafter model layers
ADD https://ewr1.vultrobjects.com/artifacts/models--nvidia--Kimi-K2.5-Thinking-Eagle3.zip /tmp/eagle3.zip
RUN unzip /tmp/eagle3.zip -d /opt/nvidia-Kimi-K2.5-Thinking-Eagle3 && \
rm /tmp/eagle3.zip

39
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,39 @@
pipeline {
agent any
parameters {
string(name: 'TAG', defaultValue: 'latest', description: 'Image tag to build and push')
}
environment {
REGISTRY = 'atl.vultrcr.com/vllm/vllm-kimi25-eagle'
REGISTRY_CREDS = credentials('ATL_VCR_VLLM')
}
stages {
stage('Build') {
steps {
sh '''
docker build \
-t ${REGISTRY}:${TAG} \
.
'''
}
}
stage('Push') {
steps {
sh '''
echo "${REGISTRY_CREDS_PSW}" | docker login atl.vultrcr.com -u "${REGISTRY_CREDS_USR}" --password-stdin
docker push ${REGISTRY}:${TAG}
'''
}
}
}
post {
always {
sh 'docker logout atl.vultrcr.com || true'
}
}
}