File: Dockerfile

package info (click to toggle)
cvelib 1.7.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 728 kB
  • sloc: python: 1,884; makefile: 3
file content (12 lines) | stat: -rw-r--r-- 377 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
FROM quay.io/fedora/fedora:latest

LABEL maintainer="Red Hat Product Security Dev - Red Hat, Inc." \
      vendor="Red Hat Product Security Dev - Red Hat, Inc." \
      summary="Container image for the cvelib CLI utility." \
      distribution-scope="public"

RUN dnf --nodocs -y install python3-pip && dnf clean all

RUN pip3 install --no-cache-dir cvelib

ENTRYPOINT ["cve"]