Files
kics-github-action/Dockerfile
2021-05-10 18:06:05 +01:00

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"]