From 9ae1022a217db77a23f6ddfe81647a98cb982277 Mon Sep 17 00:00:00 2001 From: Gregory Marco Date: Tue, 24 Sep 2024 02:15:46 -0500 Subject: [PATCH] follow woodpecker plugin env convention --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 95fa200..eda6dfc 100755 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,6 @@ COPY . . RUN cargo install --path . -ENV INPUT=. -ENV OUTPUT=output -CMD historian $INPUT --render-to $OUTPUT +ENV PLUGIN_INPUT=. +ENV PLUGIN_OUTPUT=output +CMD historian $PLUGIN_INPUT --render-to $PLUGIN_OUTPUT