mirror of
https://github.com/carhartl/talisman-secrets-scan-action.git
synced 2025-02-06 05:34:11 +00:00
9 lines
218 B
Text
9 lines
218 B
Text
|
FROM alpine:3.13.6
|
||
|
|
||
|
ADD ["https://github.com/thoughtworks/talisman/releases/download/v1.22.0/talisman_linux_amd64", "/talisman"]
|
||
|
RUN chmod +x /talisman
|
||
|
|
||
|
COPY entrypoint.sh /entrypoint.sh
|
||
|
|
||
|
ENTRYPOINT ["/entrypoint.sh"]
|