mirror of
https://github.com/tj-actions/changed-files
synced 2024-12-17 03:47:20 +00:00
10 lines
202 B
Docker
10 lines
202 B
Docker
FROM alpine:3.13.5
|
|
|
|
LABEL maintainer="Tonye Jack <jtonye@ymail.com>"
|
|
|
|
RUN apk add bash git openssh grep sed
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|