mirror of
https://github.com/Burnett01/rsync-deployments.git
synced 2026-02-18 22:41:39 +01:00
* chore(deps): bump alpine from 3.23.2 to 3.23.3 (#99) Bumps alpine from 3.23.2 to 3.23.3. --- updated-dependencies: - dependency-name: alpine dependency-version: 3.23.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * feat(action): Version 8.0.4 (alpine upgrade 3.23.3) --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
15 lines
397 B
Docker
15 lines
397 B
Docker
FROM alpine:3.23.3@sha256:25109184c71bdad752c8312a8623239686a9a2071e8825f20acb8f2198c3f659 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"]
|