aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJosh Chen2020-07-17 11:06:19 +0200
committerJosh Chen2020-07-17 11:06:19 +0200
commitf510ca75c5b01528840a0331012ef10a5545012b (patch)
tree332da13943b76f78be75e00bc6cd1cbf978be8ef /.github
parent877b9511e2ffbef518dbc92ac6a8ec98559f69f4 (diff)
fix path
Diffstat (limited to '.github')
-rw-r--r--.github/isabelle-action/Dockerfile5
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"]