Alex Couture-Beil

Results 209 comments of Alex Couture-Beil

any chance of a review @jessevdk ?

I was looking for this functionality and was considering implementing it, but it looks like it's already been done :tada: Is there any chance of getting this merged? I'm happy...

based on our current implementation, when we call `dockerfile2llb.Dockerfile2LLB`, it returns an llb state that we reference in the build graph, it already has access to our secrets attachable. I...

Thanks for the suggestion. I'm cautious about changing the entrypoint, because earthly requires https://github.com/earthly/earthly/blob/main/earthly-entrypoint.sh#L4-L12 to be executed in the case a cgroups v2 host is detected. Any thoughts on how...

there is already an escape-hatch near the bottom of the entrypoint that has: ``` if [ -n "$EARTHLY_EXEC_CMD" ]; then export earthly_config exec "$EARTHLY_EXEC_CMD" exit 1 # this should never...

It looks like the PR that was linked is failing with ``` /usr/bin/earthly-entrypoint.sh: cd: line 66: can't cd to /workspace: No such file or directory ``` This issue can be...

This has been implemented, earthly now supports `earthly --config=/some/other/path.yml`. (or by setting `EARTHLY_CONFIG=`) It's even possible to create an `.env` file, which contains the environment variable; which would make it...

@d5han I would be curious if the `.env` file solution would be sufficient for your use-case?

```Earthfile VERSION 0.6 hello: FROM alpine:3.15 COPY data . RUN cat data | md5sum > my_output SAVE ARTIFACT my_output AS LOCAL my_output ``` takes approx 7seconds on my ubuntu machine....

`--use-copy-include-patterns` was enabled by default in v0.6.0; which is being used in both v0.6.6 and v0.6.7.