From 8907e13a3e1e13eb59fe4a14e626f3ee9637e30d Mon Sep 17 00:00:00 2001 From: Mayank Chhabra Date: Wed, 16 Aug 2023 00:32:08 +0700 Subject: [PATCH] Comment out 70B image builds --- .github/workflows/on-push.yml | 4 ++-- docker-compose-70b.yml | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/on-push.yml b/.github/workflows/on-push.yml index 2bbb26b..d1e7de9 100644 --- a/.github/workflows/on-push.yml +++ b/.github/workflows/on-push.yml @@ -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:latest --push . # 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: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:${{ 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 . build_ui: runs-on: ubuntu-latest diff --git a/docker-compose-70b.yml b/docker-compose-70b.yml index 7500af5..e7738a1 100644 --- a/docker-compose-70b.yml +++ b/docker-compose-70b.yml @@ -2,7 +2,10 @@ version: '3.6' services: 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: MODEL: '/models/llama-2-70b-chat.bin'