1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/dirsearch/Dockerfile

12 lines
247 B
Docker
Raw Normal View History

2022-08-22 05:13:48 +00:00
#
# 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"]