Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 1 | # -*- makefile -*- |
| 2 | # ----------------------------------------------------------------------- |
Joey Armstrong | 7a9af44 | 2024-01-03 19:26:36 -0500 | [diff] [blame] | 3 | # Copyright 2016-2024 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 | 393daca | 2023-07-06 08:47:54 -0400 | [diff] [blame] | 50 | # ----------------------------------------------------------------------- |
| 51 | # Chicken-n-egg problem: See Dockerfile.rw_core |
| 52 | # required by testing (-coverprofile fails w/o this) |
| 53 | # test output, does not exist during build |
| 54 | # ----------------------------------------------------------------------- |
| 55 | # [TODO] Create two distinct docker files to break the artifical |
| 56 | # dependency loop |
| 57 | # ----------------------------------------------------------------------- |
Joey Armstrong | 811e954 | 2022-12-25 21:45:27 -0500 | [diff] [blame] | 58 | COPY tests/results/go-test-coverage.out ./tests/results/go-test-coverage.out |
| 59 | |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 60 | # Copy files |
Matt Jeanneret | 85ab508 | 2019-04-01 11:29:20 -0400 | [diff] [blame] | 61 | COPY rw_core ./rw_core |
girishk | 5259f8e | 2019-10-10 18:44:44 +0000 | [diff] [blame] | 62 | COPY go.mod ./ |
| 63 | COPY go.sum ./ |
khenaidoo | ffe076b | 2019-01-15 16:08:08 -0500 | [diff] [blame] | 64 | |
Kent Hagerman | c64df64 | 2020-04-07 10:26:41 -0400 | [diff] [blame] | 65 | ARG EXTRA_GO_BUILD_TAGS="" |
| 66 | |
Andrea Campanella | 8d4f3e3 | 2021-04-13 10:02:03 +0200 | [diff] [blame] | 67 | ARG CGO_PARAMETER="CGO_ENABLED=0" |
| 68 | |
Matt Jeanneret | 877b5c2 | 2019-07-03 11:09:50 -0400 | [diff] [blame] | 69 | ARG org_label_schema_version=unknown |
| 70 | ARG org_label_schema_vcs_url=unknown |
| 71 | ARG org_label_schema_vcs_ref=unknown |
| 72 | ARG org_label_schema_build_date=unknown |
| 73 | ARG org_opencord_vcs_commit_date=unknown |
| 74 | ARG org_opencord_vcs_dirty=unknown |
| 75 | |
Matt Jeanneret | 85ab508 | 2019-04-01 11:29:20 -0400 | [diff] [blame] | 76 | # Build |
girishk | 5259f8e | 2019-10-10 18:44:44 +0000 | [diff] [blame] | 77 | WORKDIR /go/src/rw_core |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 78 | SHELL ["/bin/ash", "-o", "pipefail", "-c"] |
| 79 | RUN \ |
Andrea Campanella | 8d4f3e3 | 2021-04-13 10:02:03 +0200 | [diff] [blame] | 80 | 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] | 81 | -ldflags \ |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 82 | "-X github.com/opencord/voltha-lib-go/v7/pkg/version.version=$org_label_schema_version \ |
| 83 | -X github.com/opencord/voltha-lib-go/v7/pkg/version.vcsRef=$org_label_schema_vcs_ref \ |
| 84 | -X github.com/opencord/voltha-lib-go/v7/pkg/version.vcsDirty=$org_opencord_vcs_dirty \ |
| 85 | -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') \ |
| 86 | -X github.com/opencord/voltha-lib-go/v7/pkg/version.os=$(go env GOHOSTOS) \ |
| 87 | -X github.com/opencord/voltha-lib-go/v7/pkg/version.arch=$(go env GOHOSTARCH) \ |
| 88 | -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] | 89 | . |
| 90 | |
| 91 | WORKDIR /app |
Matt Jeanneret | 85ab508 | 2019-04-01 11:29:20 -0400 | [diff] [blame] | 92 | |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 93 | # ------------- |
| 94 | # Image creation stage |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 95 | FROM --platform=linux/amd64 gcr.io/distroless/static:nonroot as prod |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 96 | |
| 97 | # Set the working directory |
| 98 | WORKDIR /app |
| 99 | |
| 100 | # Copy required files |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 101 | COPY --from=dev /app/rw_core /app/rw_core |
khenaidoo | cfee5f4 | 2018-07-19 22:47:38 -0400 | [diff] [blame] | 102 | |
Matt Jeanneret | 2e3051a | 2019-05-11 15:01:46 -0400 | [diff] [blame] | 103 | # Label image |
| 104 | ARG org_label_schema_version=unknown |
| 105 | ARG org_label_schema_vcs_url=unknown |
| 106 | ARG org_label_schema_vcs_ref=unknown |
| 107 | ARG org_label_schema_build_date=unknown |
| 108 | ARG org_opencord_vcs_commit_date=unknown |
Kent Hagerman | f4a3aab | 2019-05-22 14:42:34 -0400 | [diff] [blame] | 109 | ARG org_opencord_vcs_dirty=unknown |
Matt Jeanneret | 2e3051a | 2019-05-11 15:01:46 -0400 | [diff] [blame] | 110 | |
David K. Bainbridge | 4183514 | 2021-04-01 17:26:12 +0000 | [diff] [blame] | 111 | LABEL \ |
| 112 | org.label-schema.schema-version=1.0 \ |
| 113 | org.label-schema.name=voltha-rw-core \ |
| 114 | org.label-schema.version=$org_label_schema_version \ |
| 115 | org.label-schema.vcs-url=$org_label_schema_vcs_url \ |
| 116 | org.label-schema.vcs-ref=$org_label_schema_vcs_ref \ |
| 117 | org.label-schema.build-date=$org_label_schema_build_date \ |
| 118 | org.opencord.vcs-commit-date=$org_opencord_vcs_commit_date \ |
| 119 | org.opencord.vcs-dirty=$org_opencord_vcs_dirty |
| 120 | |
| 121 | USER nonroot:nonroot |