Cameradar becomes a golang library and cameraccess replaces the old cameradar (#75)

* Better performance
* Better UX
* Lighter docker image
* More control over the features
* Suited for devs
* Better documentation

* No tests yet
This commit is contained in:
Brendan LE GLAUNEC
2018-03-12 14:59:16 +01:00
committed by Brendan Le Glaunec
parent b4090b8301
commit 59f51f6149
152 changed files with 980 additions and 20379 deletions
+23
View File
@@ -0,0 +1,23 @@
FROM golang:alpine
WORKDIR /go/src/github.com/EtixLabs/cameradar/cameraccess
COPY . /go/src/github.com/EtixLabs/cameradar
RUN apk update && \
apk upgrade && \
apk add nmap nmap-nselibs nmap-scripts \
curl-dev \
gcc \
libc-dev \
git \
pkgconfig
RUN go get github.com/andelf/go-curl
RUN go get github.com/pkg/errors
RUN go get gopkg.in/go-playground/validator.v9
RUN go get github.com/jessevdk/go-flags
RUN go get github.com/fatih/color
RUN go install
ENTRYPOINT /go/bin/cameraccess