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 29f1e2b commit 2500253Copy full SHA for 2500253
.github/workflows/docker.yaml
@@ -16,8 +16,16 @@ on:
16
branches: [ "main" ]
17
18
jobs:
19
- call-docker-build:
+ docker-rootful:
20
uses: ethdevops/workflows/.github/workflows/basic-docker-build.yaml@main
21
secrets:
22
docker_registry_user: ${{ secrets.DOCKER_REGISTRY_USER }}
23
docker_registry_password: ${{ secrets.DOCKER_REGISTRY_SECRET }}
24
+ docker-rootless:
25
+ uses: ethdevops/workflows/.github/workflows/basic-docker-build.yaml@main
26
+ with:
27
+ dockerfile: Dockerfile.rootless
28
+ tag_suffix: rootless
29
+ secrets:
30
+ docker_registry_user: ${{ secrets.DOCKER_REGISTRY_USER }}
31
+ docker_registry_password: ${{ secrets.DOCKER_REGISTRY_SECRET }}
0 commit comments