git-annex/Dockerfile

17 lines
342 B
Docker
Raw Normal View History

# SPDX-FileCopyrightText: 2023 Tobias Schmidl
# SPDX-License-Identifier: CC0-1.0
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"]