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 |
William Kurkian | daa6bb2 | 2019-03-07 12:26:28 -0500 | [diff] [blame^] | 14 | RUN ["mkdir", "-p", "/src"] |
Stephane Barbarie | a75791c | 2019-01-24 10:58:06 -0500 | [diff] [blame] | 15 | RUN ["mkdir", "-p", "$GOPATH/src", "$GOPATH/pkg", "$GOPATH/bin"] |
William Kurkian | daa6bb2 | 2019-03-07 12:26:28 -0500 | [diff] [blame^] | 16 | RUN ["mkdir", "-p", "$GOPATH/src/github.com/opencord/voltha-go"] |
Stephane Barbarie | a75791c | 2019-01-24 10:58:06 -0500 | [diff] [blame] | 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 | |
Stephane Barbarie | a75791c | 2019-01-24 10:58:06 -0500 | [diff] [blame] | 27 | # Build ro_core |
| 28 | RUN cd ro_core && go build -o /src/ro_core |
| 29 | |
| 30 | # ------------- |
| 31 | # Image creation stage |
| 32 | |
| 33 | FROM alpine:3.8 |
| 34 | |
| 35 | # Set the working directory |
| 36 | WORKDIR /app |
| 37 | |
| 38 | # Copy required files |
| 39 | COPY --from=build-env /src/ro_core /app/ |
| 40 | |