Virus scanning rest api

This commit is contained in:
Oliver 2015-07-26 22:46:59 +01:00
parent e061bcc1fb
commit 3e087ebb07
7 changed files with 100 additions and 14 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM golang:1.3
ADD . /go/src/github.com/osterzel/clamrest
WORKDIR /go/src/github.com/osterzel/clamrest
RUN go get
RUN go install github.com/osterzel/clamrest
ENTRYPOINT /go/bin/clamrest
EXPOSE 8080