Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
R4yGM authored Aug 10, 2021
1 parent 7b0b2f8 commit 393f471
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
FROM golang:1.16-alpine
FROM golang:alpine AS builder

RUN apk update
RUN apk add --no-cache \
libc6-compat

WORKDIR /dorkscout

RUN go get github.com/R4yGM/dorkscout
RUN dorkcout install -O .
RUN dorkscout install -o .


FROM alpine:edge
COPY --from=builder /go/bin/dorkscout /bin/dorkscout
COPY --from=builder /dorkscout/* /dorkscout/

ENTRYPOINT ["dorkscout"]
ENTRYPOINT ["dorkscout"]

0 comments on commit 393f471

Please sign in to comment.