Files
dockerfiles/nmap/Dockerfile
Uwe Hermann c75d6e6c6a
Some checks failed
Build and push / check and test (push) Successful in 10s
Build and push / build_and_push (push) Failing after 1m9s
* MOD: change docker base image to alpine:latest
Signed-off-by: Uwe Hermann <uh@uleenucks.de>
2025-01-09 09:12:49 +01:00

12 lines
430 B
Docker

FROM alpine:latest
LABEL maintainer.name="Uwe Hermann"\
maintainer.email="uh@uleenucks.de"
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/community/" >> /etc/apk/repositories \
&& echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing/" >> /etc/apk/repositories \
&& apk -U upgrade --no-cache --no-progress \
&& apk --no-cache --no-progress add nmap \
&& rm -rf /tmp/* /var/cache/apk/*
ENTRYPOINT [ "nmap" ]