talisman-secrets-scan-action/Dockerfile
Klaus Hartl 4a31b2b153
Downgrade Talisman to v1.11.0
Overlooked that v1.22.0 was a preview anyway, there was a problem with
entries in .talismanrc not correctly being considered.

For some reason v1.11.0 didn't run in Alpine though, thus I switched to
Ubuntu.

Fixes #1
2021-09-23 20:39:28 +02:00

10 lines
255 B
Docker

FROM ubuntu:20.04
RUN apt update && apt install -y git
ADD ["https://github.com/thoughtworks/talisman/releases/download/v1.11.0/talisman_linux_amd64", "/talisman"]
RUN chmod +x /talisman
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]