diff --git a/Dockerfile.alpine b/Dockerfile.alpine deleted file mode 100644 index 9c0cb7c..0000000 --- a/Dockerfile.alpine +++ /dev/null @@ -1,17 +0,0 @@ -FROM alpine:latest - -# See Rclone Dockerfile -# https://github.com/rclone/rclone/blob/master/Dockerfile - -LABEL "repository"="https://github.com/ttionya/vaultwarden-backup" \ - "homepage"="https://github.com/ttionya/vaultwarden-backup" \ - "maintainer"="ttionya " - -COPY scripts/*.sh /app/ - -RUN chmod +x /app/*.sh \ - && apk add --no-cache bash ca-certificates curl sqlite p7zip heirloom-mailx tzdata unzip \ - && curl https://rclone.org/install.sh | bash \ - && apk del curl unzip - -ENTRYPOINT ["/app/entrypoint.sh"]