talisman-secrets-scan-action/Dockerfile

15 lines
386 B
Text
Raw Permalink Normal View History

FROM ubuntu:20.04
2022-04-13 12:59:16 +00:00
ENV DEBIAN_FRONTEND=noninteractive
2022-04-13 12:50:12 +00:00
2023-02-18 09:08:35 +00:00
RUN apt update && apt install software-properties-common -y \
&& add-apt-repository ppa:git-core/ppa -y \
&& apt install -y git
ADD ["https://github.com/thoughtworks/talisman/releases/download/v1.30.0/talisman_linux_amd64", "/talisman"]
RUN chmod +x /talisman
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]