df3fb7d00b
Updated the dockerfile to use the latest release of Trivy.
6 lines
133 B
Docker
6 lines
133 B
Docker
FROM aquasec/trivy:0.28.1
|
|
COPY entrypoint.sh /
|
|
RUN apk --no-cache add bash
|
|
RUN chmod +x /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|