From 22dbe23ff453e3ea2727a3d37aaf02587da59ea2 Mon Sep 17 00:00:00 2001 From: Mikael Lindemann <359941+mikaellindemann@users.noreply.github.com> Date: Tue, 29 Oct 2024 14:37:38 +0100 Subject: [PATCH] Add git-lfs to installed packages in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8f8a3ef0..0e5cf06f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ LABEL "repository"="https://github.com/anothrNick/github-tag-action" LABEL "homepage"="https://github.com/anothrNick/github-tag-action" LABEL "maintainer"="Nick Sjostrom" -RUN apk --no-cache add bash git curl jq && npm install -g semver +RUN apk --no-cache add bash git git-lfs curl jq && npm install -g semver COPY entrypoint.sh /entrypoint.sh