mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-28 09:08:36 +02:00
14 lines
200 B
Docker
14 lines
200 B
Docker
#
|
|
# Dockerfile for wafw00f
|
|
#
|
|
|
|
FROM alpine:3
|
|
MAINTAINER EasyPi Software Foundation
|
|
|
|
RUN set -xe \
|
|
&& apk add --no-cache python3 \
|
|
&& pip3 install wafw00f
|
|
|
|
ENTRYPOINT ["wafw00f"]
|
|
CMD ["--help"]
|