2022-12-02 02:08:48 +03:00
|
|
|
# Copyright 2020 OpenSSF Scorecard Authors
|
2020-11-12 21:26:38 +03:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2023-10-09 22:09:25 +03:00
|
|
|
FROM golang:1.21@sha256:e9ebfe932adeff65af5338236f0b0604c86b143c1bff3e1d0551d8f6196ab5c5 AS base
|
2021-01-05 16:45:15 +03:00
|
|
|
WORKDIR /src
|
|
|
|
ENV CGO_ENABLED=0
|
2021-02-09 00:33:59 +03:00
|
|
|
COPY go.* ./
|
2021-01-05 16:45:15 +03:00
|
|
|
RUN go mod download
|
2021-02-09 00:33:59 +03:00
|
|
|
COPY . ./
|
2021-01-05 16:45:15 +03:00
|
|
|
|
|
|
|
FROM base AS build
|
|
|
|
ARG TARGETOS
|
|
|
|
ARG TARGETARCH
|
2021-05-15 23:58:01 +03:00
|
|
|
RUN CGO_ENABLED=0 make build-scorecard
|
2021-01-05 16:45:15 +03:00
|
|
|
|
2023-10-09 22:09:25 +03:00
|
|
|
FROM gcr.io/distroless/base:nonroot@sha256:29da700a46816467c7cb91058f53eac4170a4a25ac8551d316d9fd38e2c58bdf
|
2021-03-29 04:18:34 +03:00
|
|
|
COPY --from=build /src/scorecard /
|
2021-01-05 16:45:15 +03:00
|
|
|
ENTRYPOINT [ "/scorecard" ]
|