From 9142e511faf3491c2ceb8a13626905b69a3ee7e8 Mon Sep 17 00:00:00 2001 From: Nathaniel Varona <194283+nathanielvarona@users.noreply.github.com> Date: Sat, 3 Aug 2024 23:43:58 +0800 Subject: [PATCH] Add `graph-easy` package --- graph-easy/Dockerfile | 7 +++++++ graph-easy/tags.yaml | 2 ++ 2 files changed, 9 insertions(+) create mode 100644 graph-easy/Dockerfile create mode 100644 graph-easy/tags.yaml diff --git a/graph-easy/Dockerfile b/graph-easy/Dockerfile new file mode 100644 index 0000000..a8ca09f --- /dev/null +++ b/graph-easy/Dockerfile @@ -0,0 +1,7 @@ +FROM perl:5.40.0 +LABEL io.whalebrew.name="graph-easy" +ENV PERL_MM_USE_DEFAULT=1 +ARG VERSION=0.76 +RUN cpan App::cpanminus +RUN cpanm Graph::Easy@${VERSION} +ENTRYPOINT [ "graph-easy" ] diff --git a/graph-easy/tags.yaml b/graph-easy/tags.yaml new file mode 100644 index 0000000..f618e5b --- /dev/null +++ b/graph-easy/tags.yaml @@ -0,0 +1,2 @@ +versions: +- 0.76