Commit 0572558
authored
## Summary
Fix GPG keyring path inconsistency in Dockerfile.ci that caused Docker
build failures.
## Problem
The first `gpg --recv-keys` command was writing to
`/usr/share/keyrings/mono-official-archive-keyring.gpg` but the second
command was trying to export from `/tmp/mono-keyring.gpg`, causing the
export to fail.
## Solution
Use `/tmp/mono-keyring.gpg` consistently in both GPG commands:
1. Receive keys into `/tmp/mono-keyring.gpg`
2. Export from `/tmp/mono-keyring.gpg` to final destination
## Test plan
- [x] Fix applied to Dockerfile.ci
- [ ] Docker build workflow completes successfully
- [ ] Mono and .NET packages installed correctly
Fixes #99
1 parent b85fecd commit 0572558
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
14 | | - | |
| 14 | + | |
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
| |||
0 commit comments