We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5c2267 commit e87c474Copy full SHA for e87c474
Makefile
@@ -1,2 +1,13 @@
1
-build:
+build-multi:
2
docker buildx build --platform linux/amd64,linux/arm64 . -t yoziru/nextjs-vllm-ui
3
+
4
+build:
5
+ docker build . -t yoziru/nextjs-vllm-ui
6
7
+run: build
8
+ docker run --rm \
9
+ -p 3000:3000 \
10
+ -e VLLM_URL=${VLLM_URL} \
11
+ -e VLLM_TOKEN_LIMIT=${VLLM_TOKEN_LIMIT} \
12
+ -e VLLM_API_KEY=${VLLM_API_KEY} \
13
+ yoziru/nextjs-vllm-ui
0 commit comments