mirror of
https://github.com/cpina/github-action-push-to-another-repository.git
synced 2024-12-22 08:06:10 -07:00
9543f7e15d
Alpine's Edge was used when a newer git version was needed. Now the stable one is new enough
8 lines
113 B
Docker
8 lines
113 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache git
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|