mirror of
https://github.com/cpina/github-action-push-to-another-repository.git
synced 2025-01-10 00:59:01 -07:00
5520368043
Created functions.sh file
9 lines
168 B
Docker
9 lines
168 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache git git-lfs openssh-client
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
COPY functions.sh /functions.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|