Files
kics-github-action/Dockerfile
2020-12-30 12:13:33 +02:00

11 lines
202 B
Docker

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