mirror of
https://github.com/cpina/github-action-push-to-another-repository.git
synced 2025-01-10 00:59:01 -07:00
8 lines
111 B
Docker
8 lines
111 B
Docker
FROM alpine:3.12
|
|
|
|
RUN apk add --no-cache git
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|