File: Dockerfile

package info (click to toggle)
recon-ng 5.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 612 kB
  • sloc: python: 3,535; javascript: 643; sh: 90; makefile: 4
file content (12 lines) | stat: -rw-r--r-- 307 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
FROM python:3.7-alpine AS recon-ng

RUN mkdir -p /recon-ng

WORKDIR /recon-ng

COPY ./REQUIREMENTS /recon-ng/REQUIREMENTS

RUN apk add --no-cache --virtual .build-deps gcc libc-dev libxslt-dev &&\
    apk add --no-cache libxslt &&\
    pip install --no-cache-dir -r REQUIREMENTS &&\
    apk del .build-deps