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

12 lines
278 B
Docker

FROM golang:1.16
# 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 .
WORKDIR /go/src/github.com/alice-lg/alice-lg
VOLUME ["/go/src/github.com/alice-lg/alice-lg"]