mirror of
https://github.com/Burnett01/rsync-deployments.git
synced 2026-09-19 21:25:22 +08:00
4d419d1dc4
* feat: Upgrade Alpine base image to version 3.24.1 * chore: Update supported versions and their statuses * chore: Update README with new versions and action updates Updated the README to reflect changes in Alpine and Rsync versions, and updated the action versions from v8 to v9. * chore: Update Alpine version in README.md
16 lines
397 B
Docker
16 lines
397 B
Docker
FROM alpine:3.24.1@sha256:28bd5fe8b56d1bd048e5babf5b10710ebe0bae67db86916198a6eec434943f8b 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"]
|