mirror of
https://github.com/cpina/github-action-push-to-another-repository.git
synced 2025-11-06 10:38:11 -07:00
8 lines
173 B
Docker
8 lines
173 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/main git
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|