From e827fd02add2fce988458efbbf4c5cde7c2acac6 Mon Sep 17 00:00:00 2001 From: epi Date: Sun, 15 Sep 2024 06:53:06 -0400 Subject: [PATCH] updated lints reported by docker ci --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ba141a30..76045ee1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.17.1 as build +FROM alpine:3.17.1 AS build LABEL maintainer="wfnintr@null.net" RUN apk upgrade --update-cache --available && apk add --update openssl @@ -9,7 +9,7 @@ RUN wget https://github.com/epi052/feroxbuster/releases/latest/download/x86_64-l && chmod +x /tmp/feroxbuster \ && wget https://raw.githubusercontent.com/danielmiessler/SecLists/master/Discovery/Web-Content/raft-medium-directories.txt -O /tmp/raft-medium-directories.txt -from alpine:3.17.1 as release +FROM alpine:3.17.1 AS release COPY --from=build /tmp/raft-medium-directories.txt /usr/share/seclists/Discovery/Web-Content/raft-medium-directories.txt COPY --from=build /tmp/feroxbuster /usr/local/bin/feroxbuster