git-annex/Dockerfile
2023-01-13 19:02:59 +01:00

16 lines
342 B
Docker

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