You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is happening because in our parsing logic, we remove quotes around base images provided in the FROM clause, but we only removing leading/trailing. This results in golang:"1.15" being passed in as golang:"1.15, which fails.
Expected behavior
Dockerfile parses correctly and
skaffold build
builds container imageActual behavior
skaffold build
fails with:Information
<paste your skaffold.yaml here>
Dockerfile:
This is happening because in our parsing logic, we remove quotes around base images provided in the
FROM
clause, but we only removing leading/trailing. This results ingolang:"1.15"
being passed in asgolang:"1.15
, which fails.skaffold/pkg/skaffold/docker/parse.go
Lines 443 to 451 in a045287
The text was updated successfully, but these errors were encountered: