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 d031126 commit e7a7aadCopy full SHA for e7a7aad
.github/workflows/cd-dgraph-lambda.yml
@@ -24,7 +24,12 @@ jobs:
24
with:
25
username: ${{ secrets.DOCKERHUB_USERNAME }}
26
password: ${{ secrets.DOCKERHUB_PASSWORD_TOKEN }}
27
- - name: Push dgraph-lambda images
+ - name: Install linux dependencies
28
+ run: |
29
+ #!/bin/bash
30
+ apt-get update -y
31
+ apt-get install qemu qemu-user-static binfmt-support debootstrap -y
32
+ - name: Build and push dgraph-lambda images
33
run: |
34
docker buildx create --name builder --driver docker-container
35
docker buildx use builder
0 commit comments