From 78db9cac7046f481c2e077e4fb07a748ecc89099 Mon Sep 17 00:00:00 2001 From: minoplhy Date: Sun, 1 Aug 2021 10:07:39 +0700 Subject: [PATCH] Fixing Attempt --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 01d4580..ef7de42 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM debian # Copies your code file from your action repository to the filesystem path `/` of the container -COPY filters.sh $PATH/filters.sh +COPY filters.sh /filters.sh RUN apt-get update && apt-get install -y curl && apt-get install -y git # Code file to execute when the docker container starts up (`entrypoint.sh`) -ENTRYPOINT ["$PATH/filters.sh"] \ No newline at end of file +ENTRYPOINT ["/filters.sh"] \ No newline at end of file