-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
37 lines (26 loc) · 1.03 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
FROM golang:1.5.1
MAINTAINER Harrison Shoebridge <[email protected]>
RUN go get github.com/gorilla/websocket
RUN go get github.com/gorilla/mux
RUN go get github.com/paked/gerrycode/communicator
RUN go get github.com/paked/configure
RUN go get github.com/paked/restrict
RUN go get gopkg.in/mgutz/dat.v1
RUN go get gopkg.in/mgutz/dat.v1/sqlx-runner
RUN go get github.com/dgrijalva/jwt-go
RUN go get github.com/sorcix/irc
RUN go get github.com/nickvanw/ircx
RUN go get github.com/codegangsta/gin
RUN go get github.com/bigroom/vision
RUN go get golang.org/x/crypto/bcrypt
RUN go get github.com/koding/kite
RUN go get github.com/getsentry/raven-go
RUN go get github.com/sirupsen/logrus
RUN go get github.com/facebookgo/grace/gracehttp
RUN go get github.com/bigroom/communicator
# ADD . /go/src/github.com/bigroom/vision
# ADD ./models/ /go/src/github.com/bigroom/vision/models
# ADD ./tunnel/ /go/src/github.com/bigroom/vision/tunnel
WORKDIR /go/src/github.com/bigroom/vision
# CMD go build && ./vision
CMD gin -i -a=8080 -b="vision"