git-annex/Dockerfile
Tobias Schmidl 93019f34a8 Added first version
This is basically the [git Dockerfile][1], but extended for git-annex

[1]: https://github.com/alpine-docker/git/blob/master/Dockerfile
2023-01-13 18:07:56 +01:00

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"]