93019f34a8
This is basically the [git Dockerfile][1], but extended for git-annex [1]: https://github.com/alpine-docker/git/blob/master/Dockerfile
11 lines
209 B
Docker
11 lines
209 B
Docker
FROM alpine
|
|
|
|
RUN apk fix && \
|
|
apk --no-cache --update add git git-lfs gpg less man-pages openssh patch git-annex && \
|
|
git lfs install
|
|
|
|
VOLUME /git
|
|
WORKDIR /git
|
|
|
|
ENTRYPOINT ["git-annex"]
|
|
CMD ["--help"]
|