$ docker build .
Sending build context to Docker daemon 38.15MB
[WARNING]: Empty continuation line found in:
FROM scratch
[WARNING]: Empty continuation lines will become errors in a future release.
Step 1/1 : FROM scratch
--->
No image was generated. Is your Dockerfile empty?
Although the strange text should be combined to form a single word FROM, our content assist processor does not appear to be accounting for this and returns the wrong completion items if we try to ask it for items on the third line.
Although the strange text should be combined to form a single word
FROM
, our content assist processor does not appear to be accounting for this and returns the wrong completion items if we try to ask it for items on the third line.The code should be considering
FRO
instead ofO
for its prefix.