1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00
2018-07-16 17:32:02 +02:00

15 lines
375 B
Docker

FROM golang:1.10
# Add project (for prefetching dependencies)
ADD . /go/src/github.com/alice-lg/alice-lg/backend
RUN cd /go/src/github.com/alice-lg/alice-lg/backend && go get -v .
RUN go get github.com/GeertJohan/go.rice/rice
RUN go install github.com/GeertJohan/go.rice/rice
WORKDIR /go/src/github.com/alice-lg/alice-lg
VOLUME ["/go/src/github.com/alice-lg/alice-lg"]