Revert "feat: build image from alpine for arm/v6"

This reverts commit 6c111b009c.
This commit is contained in:
ttionya
2022-07-01 21:38:05 +08:00
parent 5032bd3ff9
commit 2970c6022b
-17
View File
@@ -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 <git@ttionya.com>"
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"]