Alex Couture-Beil
Alex Couture-Beil
https://docs.docker.com/reference/dockerfile/#env gives this as an example: ``` ENV MY_NAME="John Doe" MY_DOG=Rex\ The\ Dog \ MY_CAT=fluffy ``` we should aim to support this.
This may be difficult to implement since it will require several changes to our buildkit fork; if anyone else would like this feature please upvote it with a :+1:
Here's a similar case: ``` VERSION --wait-block 0.7 foo: FROM alpine RUN --interactive /bin/sh test: FROM alpine WAIT BUILD +foo END RUN sleep 99999999999999 ``` when you run `earthly-v0.7.23 +test`,...
I've never seen this error message before, it might take some time before we can get to this. > creating an example Dockerfile ... Did you try using `docker buildx...
> I suspect the issue is perhaps related to DinD. Doesn't Earthly use it at some point? `runc` is executed (via buildkit) within the `earthly-buildkitd` container, so there is a...
maybe try a `docker buildx` inside a docker container that's running buildkit? or maybe there's some runc integration tests that can be run within a docker container?
For M1/M2/M3 (arm-based mac users); are you able to run amd64 docker images? For example, does ``` docker run --platform linux/amd64 alpine /bin/sh -c "uname -m" ``` return `x86_64` ?
perhaps more information can be pulled out of: ``` docker exec earthly-buildkitd cat /tmp/earthly/buildkit/runc-overlayfs/executor/runc-log.json ```
It's not supported, nor is having earthly reference an image that's only available on the host. We might be able to support this in the future, but it'll take some...
Not only is @mikejholly's suggestion faster, it's also _correct_. Previously `EARTHLY_GIT_REFS` was containing all references that contained the branch. This means if one were to return to the initial commit...