mirror of
https://github.com/cpina/github-action-push-to-another-repository.git
synced 2024-12-21 23:56:09 -07:00
8 lines
136 B
Docker
8 lines
136 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache git git-lfs openssh-client
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|