0304ca7929
This reverts commit c0897eebb7.
13 lines
345 B
Docker
13 lines
345 B
Docker
FROM rclone/rclone:1.54.0
|
|
|
|
LABEL "repository"="https://github.com/ttionya/BitwardenRS-Backup" \
|
|
"homepage"="https://github.com/ttionya/BitwardenRS-Backup" \
|
|
"maintainer"="ttionya <git@ttionya.com>"
|
|
|
|
COPY scripts/*.sh /app/
|
|
|
|
RUN chmod +x /app/*.sh \
|
|
&& apk add --no-cache sqlite zip heirloom-mailx tzdata
|
|
|
|
ENTRYPOINT ["/app/entrypoint.sh"]
|