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 9737ece commit 16af7caCopy full SHA for 16af7ca
.github/workflows/main.yml
@@ -19,19 +19,9 @@ jobs:
19
run: |
20
curl -SL --output buildx.exe https://github.com/docker/buildx/releases/download/v0.22.0-rc1/buildx-v0.22.0-rc1.windows-amd64.exe
21
22
- - name: GHA Cache Check
23
- shell: pwsh
24
- run: |
25
- $env:DOCKER_BUILDKIT=1
26
- $env:BUILDX_EXPERIMENTAL=1
27
- .\buildx.exe build -f docker/xcache.dockerfile --cache-to type=gha --cache-from type=gha -t app:latest .
28
- if ($LASTEXITCODE -ne 0) { exit 0 }
29
-
30
- name: Build Image
31
shell: pwsh
32
33
- $env:DOCKER_BUILDKIT=0
34
- $env:BUILDX_EXPERIMENTAL=0
35
docker build -f docker/mount.dockerfile -t app:latest .
36
37
- name: Cache Image with GHA
docker/xcache.dockerfile
@@ -1,2 +1,2 @@
1
# escape=`
2
-FROM docker.io/library/app:latest
+FROM app:latest
0 commit comments