Files
scp-action/Dockerfile
2024-09-26 20:26:19 -07:00

11 lines
213 B
Docker

# Runs on Alpine container, latest version.
FROM alpine
# Copy the content to the container.
COPY . /
RUN chmod +x /entrypoint.sh && \
apk update && \
apk add git openssh rsync
ENTRYPOINT [ "/entrypoint.sh" ]