Comment out 70B image builds
This commit is contained in:
parent
4d3479e480
commit
8907e13a3e
|
@ -19,8 +19,8 @@ jobs:
|
||||||
- run: docker buildx build --platform linux/amd64,linux/arm64 -f api/13B.Dockerfile --tag ghcr.io/getumbrel/llama-gpt-api-llama-2-13b-chat:${{ github.sha }} --push .
|
- run: docker buildx build --platform linux/amd64,linux/arm64 -f api/13B.Dockerfile --tag ghcr.io/getumbrel/llama-gpt-api-llama-2-13b-chat:${{ github.sha }} --push .
|
||||||
- run: docker buildx build --platform linux/amd64,linux/arm64 -f api/13B.Dockerfile --tag ghcr.io/getumbrel/llama-gpt-api-llama-2-13b-chat:latest --push .
|
- run: docker buildx build --platform linux/amd64,linux/arm64 -f api/13B.Dockerfile --tag ghcr.io/getumbrel/llama-gpt-api-llama-2-13b-chat:latest --push .
|
||||||
# 70B
|
# 70B
|
||||||
- run: docker buildx build --platform linux/amd64,linux/arm64 -f api/70B.Dockerfile --tag ghcr.io/getumbrel/llama-gpt-api-llama-2-70b-chat:${{ github.sha }} --push .
|
# - run: docker buildx build --platform linux/amd64,linux/arm64 -f api/70B.Dockerfile --tag ghcr.io/getumbrel/llama-gpt-api-llama-2-70b-chat:${{ github.sha }} --push .
|
||||||
- run: docker buildx build --platform linux/amd64,linux/arm64 -f api/70B.Dockerfile --tag ghcr.io/getumbrel/llama-gpt-api-llama-2-70b-chat:latest --push .
|
# - run: docker buildx build --platform linux/amd64,linux/arm64 -f api/70B.Dockerfile --tag ghcr.io/getumbrel/llama-gpt-api-llama-2-70b-chat:latest --push .
|
||||||
|
|
||||||
build_ui:
|
build_ui:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
@ -2,7 +2,10 @@ version: '3.6'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
llama-gpt-api:
|
llama-gpt-api:
|
||||||
image: 'ghcr.io/getumbrel/llama-gpt-api-llama-2-70b-chat:latest'
|
# image: 'ghcr.io/getumbrel/llama-gpt-api-llama-2-70b-chat:latest'
|
||||||
|
build:
|
||||||
|
context: ./api
|
||||||
|
dockerfile: 70B.Dockerfile
|
||||||
environment:
|
environment:
|
||||||
MODEL: '/models/llama-2-70b-chat.bin'
|
MODEL: '/models/llama-2-70b-chat.bin'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue