Edits to LABELS in Dockerfile

This commit is contained in:
VltraHeaven 2020-03-07 03:35:28 -07:00
parent 448fda9629
commit 2235127610
No known key found for this signature in database
GPG Key ID: 98C479254571D1EF
1 changed files with 4 additions and 5 deletions

View File

@ -19,19 +19,18 @@
# -v $HOME/recon-out:/autorecon/recon-out \
# --name autorecon-container tib3rius/autorecon -ct 2 -cs 2 -vv -o /autorecon/recon-out 192.168.1.100 192.168.1.1/30 localhost
LABEL description="Autorecon Container Image"
LABEL author="Tib3rius"
LABEL author="VltraHeaven"
# Building GoBuster
FROM golang:1.14.0-alpine3.11 as build
LABEL description="gobuster build container"
RUN apk --no-cache add git
RUN go get github.com/OJ/gobuster; exit 0
WORKDIR /go/src/github.com/OJ/gobuster
RUN go get && go build && go install
FROM debian:sid-slim
LABEL description="Autorecon Container Image"
LABEL author="Tib3rius"
LABEL author="VltraHeaven"
COPY --from=build /go/bin/gobuster /bin/gobuster
# Creating autorecon user/group