-
Consider an Earthfile like:
```
WORKDIR /environ
private:
GIT CLONE \
--branch=master \
gitlab.com/alexcb/privproj .
public:
GIT CLONE \
--branch=main \
…
-
I have this sample Earthfile: https://www.github.com/cciuenf/lovelace_bot/tree/main/Earthfile
But obviously it does not cache anything that's docker resulted...
I'm trying to build a better one, to …
-
Here's an example of a valid Dockerfile:
```
alex@mah:~/gh/alexcb/The-Earth-Files/syntax$ cat Dockerfile
FROM alpine:latest
ENV HI "--hello=\"world\""
ENV HELLO "world"
alex@mah:~/gh/alexcb/T…
-
For an example project with this layout:
```
# build files
common/java/Earthfile
Earthfile
# project files
gradle
./gradlew
```
Whenever you build another target, is there any option to…
-
Creating an image only containing a CMD statment doesn't work. Consider this Earthfile:
```
mytest:
FROM busybox:latest
CMD echo "hello mytest23425626"
SAVE IMAGE mytest23425626:tes…
-
For this Earthfile:
```
hello:
RUN mkdir /foo
COPY bar /foo
```
Version: `earthly version v0.5.1 linux/amd64`
```
$ earthly +hello
buildkitd | Found buildkit daemon…
-
Introduce a new flag for the `RUN` command which instructs the Earthly to never use cache for it.
```Dockerfile
RUN --no-cache ...
```
Use-cases:
* Temporarily add this flag in the Earthfil…
-
We need an example rails application added to the examples folder:
https://github.com/earthly/earthly/tree/master/examples
An example Earthfile should also be included which can build, test, and p…
-
We need an example rust application added to the examples folder:
https://github.com/earthly/earthly/tree/master/examples
An example Earthfile should also be included which can build and produce a…
-
I'm having some problems with saving artifacts using remote targets. I can't post the whole target code, but it looks like this:
```
generate:
ARG NAME
ARG TEAM
ARG OUTPUT_DIR
FROM +cook…