Files
kics-github-action/Dockerfile
2020-12-30 11:23:25 +02:00

10 lines
172 B
Docker

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