aboutsummaryrefslogtreecommitdiff
path: root/.github/action/Dockerfile
blob: 5a0e30c60f3dae9e75e99dbdabd12e4ef647abff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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"]