1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00

15 lines
375 B
Docker
Raw Normal View History

2018-07-16 16:23:07 +02:00
FROM golang:1.10
2018-07-16 17:31:53 +02:00
# 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
2018-07-16 16:23:07 +02:00
WORKDIR /go/src/github.com/alice-lg/alice-lg
VOLUME ["/go/src/github.com/alice-lg/alice-lg"]