From 5857d8652f840ced1e2d8bf8c293369cf3a69cf8 Mon Sep 17 00:00:00 2001 From: ktx Date: Fri, 21 Sep 2018 01:42:12 +0200 Subject: [PATCH] Created ALpine Dockerfile --- Dockerfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..dcfccc2d --- /dev/null +++ b/Dockerfile @@ -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" ]