diff options
author | Josh Chen | 2020-07-17 11:06:19 +0200 |
---|---|---|
committer | Josh Chen | 2020-07-17 11:06:19 +0200 |
commit | f510ca75c5b01528840a0331012ef10a5545012b (patch) | |
tree | 332da13943b76f78be75e00bc6cd1cbf978be8ef | |
parent | 877b9511e2ffbef518dbc92ac6a8ec98559f69f4 (diff) |
fix path
-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"] |