-
Notifications
You must be signed in to change notification settings - Fork 542
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
561741c
commit 524ff4d
Showing
2 changed files
with
50 additions
and
56 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,9 +1,8 @@ | ||
FROM python:alpine3 | ||
FROM python:alpine | ||
WORKDIR /app | ||
COPY . /app | ||
RUN apk add --no-cache build-base libffi-dev libxml2-dev libxslt-dev | ||
RUN /usr/local/bin/python -m pip install --upgrade pip | ||
RUN /usr/local/bin/python --version | ||
RUN pip3 install --no-cache-dir -r requirements.txt | ||
RUN chmod +x *.py | ||
ENTRYPOINT ["/app/dnsrecon.py"] | ||
RUN pip3 install --no-cache-dir . | ||
ENTRYPOINT ["dnsrecon"] |
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