Stephane Barbarie | a75791c | 2019-01-24 10:58:06 -0500 | [diff] [blame] | 1 | # ------------- |
| 2 | # Build stage |
| 3 | |
| 4 | FROM golang:1.10.7-alpine AS build-env |
| 5 | |
| 6 | # Install required packages |
| 7 | RUN apk add --no-cache wget git make build-base protobuf protobuf-dev |
| 8 | |
| 9 | # Install protobuf requirements |
| 10 | RUN git clone https://github.com/googleapis/googleapis.git /usr/local/include/googleapis |
| 11 | RUN go get google.golang.org/genproto/googleapis/api/annotations |
| 12 | |
| 13 | # Prepare directory structure |
| 14 | RUN ["mkdir", "-p", "/src", "src/protos"] |
| 15 | RUN ["mkdir", "-p", "$GOPATH/src", "$GOPATH/pkg", "$GOPATH/bin"] |
| 16 | RUN ["mkdir", "-p", "$GOPATH/src/github.com/opencord/voltha/protos/go"] |
| 17 | |
| 18 | WORKDIR $GOPATH/src/github.com/opencord/voltha-go |
| 19 | |
| 20 | # Copy files |
| 21 | ADD ro_core ./ro_core |
| 22 | ADD common ./common |
| 23 | ADD db ./db |
| 24 | ADD kafka ./kafka |
| 25 | ADD vendor ./vendor |
| 26 | |
| 27 | # Install the protoc-gen-go |
| 28 | RUN go install ./vendor/github.com/golang/protobuf/protoc-gen-go |
| 29 | |
| 30 | # Copy required proto files |
| 31 | # ... VOLTHA proos |
| 32 | ADD protos/*.proto /src/protos/ |
| 33 | ADD protos/scripts/* /src/protos/ |
| 34 | |
| 35 | # Compile protobuf files |
| 36 | RUN sh /src/protos/build_protos.sh /src/protos |
| 37 | |
| 38 | # Build ro_core |
| 39 | RUN cd ro_core && go build -o /src/ro_core |
| 40 | |
| 41 | # ------------- |
| 42 | # Image creation stage |
| 43 | |
| 44 | FROM alpine:3.8 |
| 45 | |
| 46 | # Set the working directory |
| 47 | WORKDIR /app |
| 48 | |
| 49 | # Copy required files |
| 50 | COPY --from=build-env /src/ro_core /app/ |
| 51 | |