From 0871d7dbbbf36839f3cba53de8879851670a6246 Mon Sep 17 00:00:00 2001 From: greaka <2805834+greaka@users.noreply.github.com> Date: Mon, 27 May 2024 12:17:13 +0200 Subject: [PATCH] Fix Earthly remote imports not supporting absolute paths (#122) --- Earthfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Earthfile b/Earthfile index bd1058a..7544c00 100644 --- a/Earthfile +++ b/Earthfile @@ -1,5 +1,10 @@ VERSION 0.8 +ctx: + FROM busybox + RUN mkdir -p /tmp/docker-build + SAVE ARTIFACT /tmp/docker-build + xwin: - FROM DOCKERFILE -f xwin.dockerfile /tmp/docker-build + FROM DOCKERFILE -f xwin.dockerfile +ctx/docker-build SAVE IMAGE xwin:latest