diff options
author | Elizabeth Alexander Hunt <me@liz.coffee> | 2025-05-10 20:34:41 -0700 |
---|---|---|
committer | Elizabeth Alexander Hunt <me@liz.coffee> | 2025-05-10 20:46:57 -0700 |
commit | 9f0539c895d944caade394ea2590f4fa93c9537e (patch) | |
tree | a145f1ff1696c62efe8893e710347f68ae47ec11 | |
parent | 946bbfa548fbdad17980a535baaba70bbd56b499 (diff) | |
download | ci-9f0539c895d944caade394ea2590f4fa93c9537e.tar.gz ci-9f0539c895d944caade394ea2590f4fa93c9537e.zip |
Fix entrypoint
-rw-r--r-- | hooks/Dockerfile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hooks/Dockerfile b/hooks/Dockerfile index 61fc0f5..4dce8b9 100644 --- a/hooks/Dockerfile +++ b/hooks/Dockerfile @@ -1,3 +1,4 @@ FROM oci.liz.coffee/img/liz-ci:release AS hooks +ENTRYPOINT [] CMD [ "deno", "run", "--allow-env", "--allow-net", "/app/hooks/mod.ts" ] |