git-annex/Dockerfile

14 lines
260 B
Docker
Raw Normal View History

FROM alpine
2023-01-13 18:27:50 +01:00
LABEL org.label-schema.schema-version="1.0.0-rc1"
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"]