From 4209fc568f4dd43857033bc4f2f56673b356c567 Mon Sep 17 00:00:00 2001 From: Remy Moll Date: Fri, 17 Oct 2025 09:01:10 +0200 Subject: [PATCH] slight whoopsie on file copying --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 66bc6a4..6906394 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,6 @@ RUN uv sync --frozen # copy the rest of the code COPY config.yaml . -COPY config . +COPY config/ ./config/ CMD ["uv", "run", "octodns-sync", "--config-file", "config.yaml", "--doit"]