Skip to content

Commit

Permalink
Docker file changes (version bump, user/group additions, bugfixes)
Browse files Browse the repository at this point in the history
Co-authored-by: KOPACb <[email protected]>
  • Loading branch information
evyatarguardicore and KOPACb committed Jul 4, 2021
1 parent 533c773 commit 861e2e5
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
18 changes: 14 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
FROM python:3.5-alpine
LABEL maintainer="Mostafa Hussein <[email protected]>"
FROM python:3.8-alpine

LABEL maintainer="Evyatar Meged <[email protected]>"
LABEL dockerfile-creator="Mostafa Hussein <[email protected]>"

RUN addgroup -S raccoon && \
adduser -S raccoon -G raccoon

RUN apk add --no-cache gcc musl-dev libxml2-dev libxslt-dev nmap nmap-scripts openssl
RUN pip install raccoon-scanner
RUN adduser -D raccoon

USER raccoon
WORKDIR /home/raccoon
RUN pip install raccoon-scanner

ENV PATH=/home/raccoon/.local/bin:${PATH}

ENTRYPOINT ["raccoon"]
CMD ["--help"]
2 changes: 1 addition & 1 deletion raccoon_src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def intro(logger):
# help="Min and Max number of seconds of delay to be waited between requests\n"
# "Defaults to Min: 0.25, Max: 1. Specified in the format of Min-Max")
@click.option("-q", "--quiet", is_flag=True, help="Do not output to stdout")
@click.option("-o", "--outdir", default="Raccoon_scan_results",
@click.option("-o", "--outdir", default="raccoon_scan_results",
help="Directory destination for scan output")
def main(target,
tor_routing,
Expand Down

0 comments on commit 861e2e5

Please sign in to comment.