os
os copied to clipboard
skopeo
the skopeo package is missing a configuration file which leads to a message regarding missing policy file, there is a default policy file in the skopeo git repositoy which would be copied into the apk if make install was used, but assuming this isn't done as it would mean all the doco / man pages etc would be added to the package. simply adding the following would include the default policy file and remove the need to add the --insecure-policy to commands
- runs: |
POLICY_DIR=${{targets.destdir}}/etc/containers
mkdir -p "$POLICY_DIR"
cp ./default-policy.json "$POLICY_DIR"/policy.json
happy to open a PR for this if this is an acceptable approach? if this file has been excluded for a reason would be useful to understand.