mirror of
https://github.com/carhartl/talisman-secrets-scan-action.git
synced 2024-12-04 21:30:23 +00:00
fbca4983a5
Mimicing a pre-push hook, where refs and shas need to passed in as arguments.
8 lines
218 B
Docker
8 lines
218 B
Docker
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"]
|