Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
FROM alpine:3.10
FROM alpine:3.20

LABEL version="2.0.0"
LABEL version="3.0.0"
LABEL maintainer="Pendect Tech Team <[email protected]>" \
org.label-schema.vendor="Pendect GmbH" \
com.github.actions.name="RSyncer Action" \
com.github.actions.description="This action syncs files (probably) generated by a previous step in the workflow with a remote server." \
com.github.actions.icon="truck" \
com.github.actions.color="blue"

RUN apk add --no-cache --virtual .run-deps rsync=3.1.3-r1 openssh=8.1_p1-r0 && \
RUN apk update && apk upgrade
RUN apk add --no-cache --virtual .run-deps rsync openssh && \
rm -rf /var/cache/apk/*

COPY entrypoint.sh /entrypoint.sh
Expand Down