### Expected Behavior The following Dockerfile should work (https://docs.docker.com/reference/dockerfile/#example-creating-inline-files): ``` FROM alpine COPY <<EOF /etc/myconf setting1=value EOF ``` ### Current Behavior Fails with the following error: ``` Could not build image: COPY failed: no source files were specified ``` The Dockerfile works fine with commandline `docker build`.