2
votes

I'm trying to install git-lfs in a Docker alpine image, but I'm getting an error indicating:

ERROR: unsatisfiable constraints:
git-lfs (missing):
required by: world[git-lfs]

It seems that there has been many issues related to apk not finding packages (see here and there), and in many cases these have been solved by using the --no-cache option with apk add. But I am not being that lucky and cannot understand the origin of this error, specially considering that git-lfs is up to date in alpine repo.

The following small Dockerfile should reproduce the error:

FROM alpine:3.4

RUN apk update && apk add --no-cache \
        build-base \
        git \
        git-lfs
1

1 Answers

1
votes

The problem is that git-lfs is available only from alpine:3.7.

To fix the issue you should either rebuild it on your own or use an alpine version >=3.7.

Btw, you don't need to execute apk update.