We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98172cd commit 665129cCopy full SHA for 665129c
Dockerfile
@@ -0,0 +1,8 @@
1
+FROM golang:1.14-alpine AS builder
2
+RUN apk add --no-cache git
3
+RUN GO111MODULE=auto go get -u -v github.com/projectdiscovery/simplehttpserver
4
+
5
+FROM alpine:latest
6
+COPY --from=builder /go/bin/simplehttpserver /usr/local/bin/
7
8
+ENTRYPOINT ["simplehttpserver"]
0 commit comments