mirror of
https://github.com/Burnett01/rsync-deployments.git
synced 2026-09-19 13:15:23 +08:00
66257cad6b
* feat: Update base image to Alpine 3.23.4 Alpine 3.23.4 fixes the following: musl CVE-2026-6042 CVE-2026-40200 openssl CVE-2026-31790 CVE-2026-28387 CVE-2026-28388 CVE-2026-28389 CVE-2026-28390 CVE-2026-31789 * chore: Update supported versions in SECURITY.md * chore: Update README for Alpine and version changes * chore: Update copyright years in LICENSE file Updated copyright years for Joshua Piper and Burnett01.
16 lines
397 B
Docker
16 lines
397 B
Docker
FROM alpine:3.23.4@sha256:5b10f432ef3da1b8d4c7eb6c487f2f5a8f096bc91145e68878dd4a5019afde11 AS base
|
|
|
|
RUN apk update && apk add --no-cache --upgrade rsync openssh openssl busybox
|
|
|
|
RUN rm -rf /var/cache/apk/*
|
|
|
|
COPY docker-rsync/* /bin/
|
|
RUN chmod +x /bin/agent-* /bin/ssh-* /bin/hosts-*
|
|
|
|
FROM base AS build
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|