From 09d59ce651d5ef535132c1b2d52387cb2c103506 Mon Sep 17 00:00:00 2001 From: orhun Date: Sat, 19 Jun 2021 20:44:28 +0300 Subject: [PATCH] chore(docker): remove the working directory --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1cc8154..6d3906b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,8 @@ LABEL com.github.actions.description="Generate changelog based on your Git histo LABEL com.github.actions.icon="triangle" LABEL com.github.actions.color="orange" -WORKDIR action -COPY README.md LICENSE entrypoint.sh ./ +COPY README.md / +COPY LICENSE / +COPY entrypoint.sh /entrypoint.sh -ENTRYPOINT ["./entrypoint.sh"] +ENTRYPOINT ["/entrypoint.sh"]