From 561f89d2da5dea14c6e1a18dbecb8235d4768c76 Mon Sep 17 00:00:00 2001 From: Wanjohi Date: Tue, 10 Dec 2024 15:27:33 +0300 Subject: [PATCH] fix: Fix working directory directory --- containers/runner.Containerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/containers/runner.Containerfile b/containers/runner.Containerfile index 4f923544..7e0e28e1 100644 --- a/containers/runner.Containerfile +++ b/containers/runner.Containerfile @@ -46,8 +46,9 @@ RUN --mount=type=cache,target=/builder/target/ \ RUN git clone https://github.com/games-on-whales/gst-wayland-display.git # Build gst plugin # -RUN mkdir plugin && \ - cd gst-wayland-display +RUN mkdir plugin + +WORKDIR /builder/gst-wayland-display RUN --mount=type=cache,target=/builder/target/ \ --mount=type=cache,target=/builder/plugin/ \