Thorsten Schubert
6058de67c4
All checks were successful
continuous-integration/drone/push Build is passing
9 lines
252 B
Docker
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" ]
|