fix(renovate): unquote FROM to enable docker image lookup #5
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:8.3-apache"line uses double quotes around the image reference, causing Renovate to extract"phpinstead ofphp:8.3-apache.Fix
Remove double quotes from
FROMinstruction.