services-oci/restic/Containerfile
Thorsten Schubert 6058de67c4
All checks were successful
continuous-integration/drone/push Build is passing
Add alpine autorestic image
2022-10-17 01:18:13 +02:00

9 lines
252 B
Docker

# SPDX-License-Identifier: AGPL-3.0-or-later
# Copyright © 2022 Thorsten Schubert <tschubert@bafh.org>
ARG ALPINE_BRANCH=latest
FROM docker.io/library/alpine:${ALPINE_BRANCH}
RUN apk --update add --no-cache restic rclone openssh
CMD [ "/bin/ash" ]