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

10 lines
182 B
Docker

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