diff options
Diffstat (limited to '.github/action/Dockerfile')
-rw-r--r-- | .github/action/Dockerfile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/action/Dockerfile b/.github/action/Dockerfile new file mode 100644 index 0000000..5a0e30c --- /dev/null +++ b/.github/action/Dockerfile @@ -0,0 +1,15 @@ +FROM clojure:alpine + +LABEL version="0.1.0" +LABEL repository="https://github.com/viniciustozzi/pathfinder_tools.git" +LABEL homepage="https://github.com/viniciustozzi/pathfinder_tools" +LABEL maintainer="" + +LABEL com.github.actions.name="GitHub Action for lein" +LABEL com.github.actions.description="Wraps the npm CLI to enable common lein commands." +LABEL com.github.actions.icon="package" +LABEL com.github.actions.color="red" + +COPY "entrypoint.sh" "/entrypoint.sh" +ENTRYPOINT ["/entrypoint.sh"] +CMD ["help"] |