git-annex/Dockerfile
Tobias Schmidl 8033fedf18 added labels
2023-01-13 18:27:50 +01:00

13 lines
260 B
Docker

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