Files
kics-github-action/Dockerfile
dependabot[bot] 06b44d2f7c Bump ubuntu from 18.04 to 20.04
Bumps ubuntu from 18.04 to 20.04.

Signed-off-by: dependabot[bot] <support@github.com>
2021-03-18 15:45:31 +00:00

10 lines
182 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"]