From c04ed2fce6664e47b8772c3da3902fa38d53ae64 Mon Sep 17 00:00:00 2001 From: tatar Date: Thu, 28 Mar 2024 15:04:05 +0300 Subject: [PATCH] add: Dockerfile update: README.md --- Dockerfile | 9 +++++++++ README.md | 11 +++++++++++ 2 files changed, 20 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..2ce9e1c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM golang:alpine + +COPY . /app + +WORKDIR /app + +RUN go install github.com/trap-bytes/gourlex@latest + +ENTRYPOINT ["gourlex"] diff --git a/README.md b/README.md index 8d985e0..a35d890 100644 --- a/README.md +++ b/README.md @@ -19,11 +19,22 @@ It can be helpful during web application assessments to uncover additional targe ``` go install github.com/trap-bytes/gourlex@latest ``` +##### Docker Image Setup +``` +docker build -t gourlex . +``` + + ## Usage: ``` gourlex -h ``` +##### Run With Docker + +``` +docker run gourlex -h +``` This will display help for the tool. Here are all the arguments it supports.