mirror of
https://github.com/cpina/github-action-push-to-another-repository.git
synced 2025-10-15 09:48:12 -06:00
8 lines
156 B
Docker
8 lines
156 B
Docker
FROM alpine:3.20
|
|
|
|
RUN apk update && apk add --no-cache git git-lfs openssh-client openssl
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|