try adding build essential (#2526)

This commit is contained in:
rkuo-danswer 2024-09-20 11:51:44 -07:00 committed by GitHub
parent 122e3fa3fa
commit 6d859bd37c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,6 +27,11 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Install build-essential
run: |
sudo apt-get update
sudo apt-get install -y build-essential
- name: Backend Image Docker Build and Push
uses: docker/build-push-action@v5
with: