Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 1 | # -*- makefile -*- |
| 2 | # ----------------------------------------------------------------------- |
| 3 | # Copyright 2016-2023 Open Networking Foundation (ONF) and the ONF Contributors |
Matt Jeanneret | 2e3051a | 2019-05-11 15:01:46 -0400 | [diff] [blame] | 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 16 | # ----------------------------------------------------------------------- |
| 17 | |
| 18 | # --------------------------------------------------------------------------- |
| 19 | # Alternates to try when APK is having repository problems. |
| 20 | # http://dl-cnd.alpinelinux.org |
| 21 | # http://dl-3.alpinelinux.org |
| 22 | # http://dl-4.alpinelinux.org |
| 23 | # --------------------------------------------------------------------------- |
| 24 | #9 0.263 fetch https://dl-cdn.alpinelinux.org/alpine/v3.13/main/x86_64/APKIND4EX.tar.gz |
| 25 | #9 5.269 ERROR: https://dl-cdn.alpinelinux.org/alpine/v3.13/main: temporary error (try again later) |
| 26 | #9 5.269 WARNING: Ignoring https://dl-cdn.alpinelinux.org/alpine/v3.13/main: No such file or directory |
| 27 | #9 5.269 fetch https://dl-cdn.alpinelinux.org/alpine/v3.13/community/x86_64/APKINDEX.tar.gz |
| 28 | # --------------------------------------------------------------------------- |
Matt Jeanneret | 2e3051a | 2019-05-11 15:01:46 -0400 | [diff] [blame] | 29 | |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 30 | # ------------- |
| 31 | # Build stage |
| 32 | |
David K. Bainbridge | fc8e181 | 2021-04-09 16:09:49 +0000 | [diff] [blame] | 33 | FROM --platform=linux/amd64 golang:1.16.3-alpine3.13 AS dev |
Matt Jeanneret | 2e3051a | 2019-05-11 15:01:46 -0400 | [diff] [blame] | 34 | |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 35 | # [TODO] update |
| 36 | # FROM --platform=linux/amd64 golang:1.19.4-r0-alpine3.17 AS dev |
| 37 | |
Matt Jeanneret | 2e3051a | 2019-05-11 15:01:46 -0400 | [diff] [blame] | 38 | # Install required packages |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 39 | |
| 40 | RUN apk --update update # refresh the index |
| 41 | RUN apk --update add --no-cache build-base=0.5-r3 |
Matt Jeanneret | 2e3051a | 2019-05-11 15:01:46 -0400 | [diff] [blame] | 42 | |
girishk | 5259f8e | 2019-10-10 18:44:44 +0000 | [diff] [blame] | 43 | # Use Standard go build directory structure |
| 44 | WORKDIR /go/src |
khenaidoo | ffe076b | 2019-01-15 16:08:08 -0500 | [diff] [blame] | 45 | |
Matt Jeanneret | 2e3051a | 2019-05-11 15:01:46 -0400 | [diff] [blame] | 46 | # Copy common files. |
sbarbari | 17d7e22 | 2019-11-05 10:02:29 -0500 | [diff] [blame] | 47 | COPY db ./db |
Matt Jeanneret | 2e3051a | 2019-05-11 15:01:46 -0400 | [diff] [blame] | 48 | COPY vendor ./vendor |
| 49 | |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 50 | # go test -coverprofile fails w/o this. |
| 51 | COPY tests/results/go-test-coverage.out ./tests/results/go-test-coverage.out |
| 52 | |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 53 | # Copy files |
Matt Jeanneret | 85ab508 | 2019-04-01 11:29:20 -0400 | [diff] [blame] | 54 | COPY rw_core ./rw_core |
girishk | 5259f8e | 2019-10-10 18:44:44 +0000 | [diff] [blame] | 55 | COPY go.mod ./ |
| 56 | COPY go.sum ./ |
khenaidoo | ffe076b | 2019-01-15 16:08:08 -0500 | [diff] [blame] | 57 | |
Kent Hagerman | c64df64 | 2020-04-07 10:26:41 -0400 | [diff] [blame] | 58 | ARG EXTRA_GO_BUILD_TAGS="" |
| 59 | |
Andrea Campanella | 8d4f3e3 | 2021-04-13 10:02:03 +0200 | [diff] [blame] | 60 | ARG CGO_PARAMETER="CGO_ENABLED=0" |
| 61 | |
Matt Jeanneret | 877b5c2 | 2019-07-03 11:09:50 -0400 | [diff] [blame] | 62 | ARG org_label_schema_version=unknown |
| 63 | ARG org_label_schema_vcs_url=unknown |
| 64 | ARG org_label_schema_vcs_ref=unknown |
| 65 | ARG org_label_schema_build_date=unknown |
| 66 | ARG org_opencord_vcs_commit_date=unknown |
| 67 | ARG org_opencord_vcs_dirty=unknown |
| 68 | |
Matt Jeanneret | 85ab508 | 2019-04-01 11:29:20 -0400 | [diff] [blame] | 69 | # Build |
girishk | 5259f8e | 2019-10-10 18:44:44 +0000 | [diff] [blame] | 70 | WORKDIR /go/src/rw_core |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 71 | SHELL ["/bin/ash", "-o", "pipefail", "-c"] |
| 72 | RUN \ |
Andrea Campanella | 8d4f3e3 | 2021-04-13 10:02:03 +0200 | [diff] [blame] | 73 | export ${CGO_PARAMETER?} && go build $EXTRA_GO_BUILD_TAGS -mod=vendor -o /app/rw_core \ |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 74 | -ldflags \ |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 75 | "-X github.com/opencord/voltha-lib-go/v7/pkg/version.version=$org_label_schema_version \ |
| 76 | -X github.com/opencord/voltha-lib-go/v7/pkg/version.vcsRef=$org_label_schema_vcs_ref \ |
| 77 | -X github.com/opencord/voltha-lib-go/v7/pkg/version.vcsDirty=$org_opencord_vcs_dirty \ |
| 78 | -X github.com/opencord/voltha-lib-go/v7/pkg/version.goVersion=$(go version 2>&1 | sed -E 's/.*go([0-9]+\.[0-9]+\.[0-9]+).*/\1/g') \ |
| 79 | -X github.com/opencord/voltha-lib-go/v7/pkg/version.os=$(go env GOHOSTOS) \ |
| 80 | -X github.com/opencord/voltha-lib-go/v7/pkg/version.arch=$(go env GOHOSTARCH) \ |
| 81 | -X github.com/opencord/voltha-lib-go/v7/pkg/version.buildTime=$org_label_schema_build_date" \ |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 82 | . |
| 83 | |
| 84 | WORKDIR /app |
Matt Jeanneret | 85ab508 | 2019-04-01 11:29:20 -0400 | [diff] [blame] | 85 | |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 86 | # ------------- |
| 87 | # Image creation stage |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 88 | FROM --platform=linux/amd64 gcr.io/distroless/static:nonroot as prod |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 89 | |
| 90 | # Set the working directory |
| 91 | WORKDIR /app |
| 92 | |
| 93 | # Copy required files |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 94 | COPY --from=dev /app/rw_core /app/rw_core |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 95 | |
Matt Jeanneret | 2e3051a | 2019-05-11 15:01:46 -0400 | [diff] [blame] | 96 | # Label image |
| 97 | ARG org_label_schema_version=unknown |
| 98 | ARG org_label_schema_vcs_url=unknown |
| 99 | ARG org_label_schema_vcs_ref=unknown |
| 100 | ARG org_label_schema_build_date=unknown |
| 101 | ARG org_opencord_vcs_commit_date=unknown |
Kent Hagerman | f4a3aab | 2019-05-22 14:42:34 -0400 | [diff] [blame] | 102 | ARG org_opencord_vcs_dirty=unknown |
Matt Jeanneret | 2e3051a | 2019-05-11 15:01:46 -0400 | [diff] [blame] | 103 | |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 104 | LABEL \ |
| 105 | org.label-schema.schema-version=1.0 \ |
| 106 | org.label-schema.name=voltha-rw-core \ |
| 107 | org.label-schema.version=$org_label_schema_version \ |
| 108 | org.label-schema.vcs-url=$org_label_schema_vcs_url \ |
| 109 | org.label-schema.vcs-ref=$org_label_schema_vcs_ref \ |
| 110 | org.label-schema.build-date=$org_label_schema_build_date \ |
| 111 | org.opencord.vcs-commit-date=$org_opencord_vcs_commit_date \ |
| 112 | org.opencord.vcs-dirty=$org_opencord_vcs_dirty |
| 113 | |
| 114 | USER nonroot:nonroot |