Files
kics-github-action/Dockerfile
T

10 lines
181 B
Docker

FROM ubuntu:20.04
RUN apt-get update && \
apt-get install -y wget curl
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]