mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 18:12:55 +01:00
10 lines
286 B
Docker
10 lines
286 B
Docker
FROM alpine:3.7
|
|
|
|
RUN apk --no-cache add \
|
|
jq git python3 python3-dev libxml2 libxml2-dev libxslt-dev g++ mongodb-tools curl wget bc bash
|
|
|
|
RUN git clone https://github.com/cve-search/cve-search.git --branch v2.8 --single-branch /app
|
|
|
|
WORKDIR /app
|
|
|
|
RUN pip3 install -r requirements.txt
|