fix(renovate): unquote FROM to enable docker image lookup #2
Reference in New Issue
Block a user
Delete Branch "chore/renovate"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
Renovate reports:
Failed to look up docker package "php": no-resultThe
FROM "php:7.4-apache"line uses double quotes around the image reference, causing Renovate to fail parsing.Fix
Remove double quotes from
FROMinstruction.