File tree Expand file tree Collapse file tree 2 files changed +1
-11
lines changed Expand file tree Collapse file tree 2 files changed +1
-11
lines changed Original file line number Diff line number Diff line change 19
19
run : |
20
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
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
22
- name : Build Image
31
23
shell : pwsh
32
24
run : |
33
- $env:DOCKER_BUILDKIT=0
34
- $env:BUILDX_EXPERIMENTAL=0
35
25
docker build -f docker/mount.dockerfile -t app:latest .
36
26
37
27
- name : Cache Image with GHA
Original file line number Diff line number Diff line change 1
1
# escape=`
2
- FROM docker.io/library/ app:latest
2
+ FROM app:latest
You can’t perform that action at this time.
0 commit comments