9 lines
117 B
Text
9 lines
117 B
Text
|
FROM golang:latest
|
||
|
|
||
|
WORKDIR /go/src/sungrow
|
||
|
COPY . .
|
||
|
|
||
|
RUN go get -d -v ./...
|
||
|
RUN go install -v ./...
|
||
|
|
||
|
CMD ["sungrow"]
|