-
Notifications
You must be signed in to change notification settings - Fork 503
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
ktx
committed
Sep 20, 2018
1 parent
a756fe8
commit 5857d86
Showing
1 changed file
with
14 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM python:3-alpine | ||
|
||
LABEL name CMSeeK | ||
LABEL src "https://github.com/Tuhinshubhra/CMSeeK" | ||
LABEL creato Tuhinshubhra | ||
LABEL dockerfile_maintenance khast3x | ||
LABEL desc "CMS Detection and Exploitation suite - Scan WordPress, Joomla, Drupal and 130 other CMSs." | ||
|
||
|
||
RUN apk add --no-cache git py3-pip && git clone https://github.com/Tuhinshubhra/CMSeeK | ||
|
||
WORKDIR CMSeeK | ||
RUN pip install -r requirements.txt | ||
ENTRYPOINT [ "python", "cmseek.py" ] |