From 92ca0eb8dfaee209fac76874866e749feb94cb30 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Mon, 24 Jul 2023 20:20:53 +0530 Subject: [PATCH] fix: copy CWD from host to container --- package/aur/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/aur/Dockerfile b/package/aur/Dockerfile index de0f353..0f77d09 100644 --- a/package/aur/Dockerfile +++ b/package/aur/Dockerfile @@ -16,6 +16,8 @@ RUN mkdir -p /home/builder/.ssh && \ RUN ls /home/ +COPY /home/runner/work/lune/lune/* /git_src + COPY /git_src/package/aur/ssh_config /home/builder/.ssh/config RUN chown -R builder:builder /home/builder/.ssh && \