diff options
-rw-r--r-- | .github/isabelle-action/Dockerfile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/isabelle-action/Dockerfile b/.github/isabelle-action/Dockerfile index 20b250d..2c7af73 100644 --- a/.github/isabelle-action/Dockerfile +++ b/.github/isabelle-action/Dockerfile @@ -19,6 +19,7 @@ RUN tar xzf Isabelle.tar.gz &&\ rm Isabelle.tar.gz # Set up entrypoint -RUN chmod +x entrypoint.sh -ENTRYPOINT ["entrypoint.sh"] +COPY entrypoint.sh /entrypoint.sh +RUN chmod +x /entrypoint.sh +ENTRYPOINT ["/entrypoint.sh"] |