forked from lanmaster53/recon-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e944a3f
commit e4bb90d
Showing
1 changed file
with
5 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
FROM python:3.7-alpine | ||
|
||
RUN apk add --no-cache --virtual .build-deps gcc libc-dev libxslt-dev && \ | ||
apk add --no-cache libxslt && \ | ||
pip install --no-cache-dir lxml && \ | ||
apk del .build-deps && \ | ||
mkdir -p /recon-ng | ||
RUN mkdir -p /recon-ng | ||
|
||
WORKDIR /recon-ng | ||
|
||
ADD ./REQUIREMENTS /recon-ng/REQUIREMENTS | ||
|
||
RUN pip install -r 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 |