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