mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-14 11:23:02 +02:00
12 lines
247 B
Docker
12 lines
247 B
Docker
#
|
|
# Dockerfile for dirsearch
|
|
#
|
|
|
|
FROM python:3-alpine
|
|
MAINTAINER EasyPi Software Foundation
|
|
|
|
RUN pip3 install --no-cache-dir pip install https://github.com/maurosoria/dirsearch/archive/refs/heads/master.zip
|
|
|
|
ENTRYPOINT ["dirsearch"]
|
|
CMD ["--help"]
|