2020-08-04 18:40:05 +00:00
|
|
|
# Copyright 2020 the Velero contributors.
|
|
|
|
#
|
|
|
|
# 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.
|
2022-12-13 10:09:11 +00:00
|
|
|
|
2023-01-12 07:41:48 +00:00
|
|
|
# Velero binary build section
|
2023-02-23 06:00:34 +00:00
|
|
|
FROM --platform=$BUILDPLATFORM golang:1.18-bullseye as velero-builder
|
2020-08-04 18:40:05 +00:00
|
|
|
|
|
|
|
ARG GOPROXY
|
2022-12-13 10:09:11 +00:00
|
|
|
ARG BIN
|
2020-08-04 18:40:05 +00:00
|
|
|
ARG PKG
|
|
|
|
ARG VERSION
|
2022-12-13 10:09:11 +00:00
|
|
|
ARG REGISTRY
|
2020-08-04 18:40:05 +00:00
|
|
|
ARG GIT_SHA
|
|
|
|
ARG GIT_TREE_STATE
|
2022-12-13 10:09:11 +00:00
|
|
|
ARG TARGETOS
|
|
|
|
ARG TARGETARCH
|
|
|
|
ARG TARGETVARIANT
|
2020-08-04 18:40:05 +00:00
|
|
|
|
|
|
|
ENV CGO_ENABLED=0 \
|
|
|
|
GO111MODULE=on \
|
|
|
|
GOPROXY=${GOPROXY} \
|
2022-12-13 10:09:11 +00:00
|
|
|
GOOS=${TARGETOS} \
|
|
|
|
GOARCH=${TARGETARCH} \
|
|
|
|
GOARM=${TARGETVARIANT} \
|
2021-07-06 20:14:46 +00:00
|
|
|
LDFLAGS="-X ${PKG}/pkg/buildinfo.Version=${VERSION} -X ${PKG}/pkg/buildinfo.GitSHA=${GIT_SHA} -X ${PKG}/pkg/buildinfo.GitTreeState=${GIT_TREE_STATE} -X ${PKG}/pkg/buildinfo.ImageRegistry=${REGISTRY}"
|
2020-08-04 18:40:05 +00:00
|
|
|
|
|
|
|
WORKDIR /go/src/github.com/vmware-tanzu/velero
|
|
|
|
|
|
|
|
COPY . /go/src/github.com/vmware-tanzu/velero
|
|
|
|
|
|
|
|
RUN mkdir -p /output/usr/bin && \
|
|
|
|
export GOARM=$( echo "${GOARM}" | cut -c2-) && \
|
|
|
|
go build -o /output/${BIN} \
|
|
|
|
-ldflags "${LDFLAGS}" ${PKG}/cmd/${BIN}
|
|
|
|
|
2022-12-13 10:09:11 +00:00
|
|
|
# Restic binary build section
|
2023-02-23 06:00:34 +00:00
|
|
|
FROM --platform=$BUILDPLATFORM golang:1.19-bullseye as restic-builder
|
2023-01-12 07:41:48 +00:00
|
|
|
|
|
|
|
ARG BIN
|
|
|
|
ARG TARGETOS
|
|
|
|
ARG TARGETARCH
|
|
|
|
ARG TARGETVARIANT
|
|
|
|
ARG RESTIC_VERSION
|
|
|
|
|
|
|
|
env CGO_ENABLED=0 \
|
|
|
|
GO111MODULE=on \
|
|
|
|
GOPROXY=${GOPROXY} \
|
|
|
|
GOOS=${TARGETOS} \
|
|
|
|
GOARCH=${TARGETARCH} \
|
|
|
|
GOARM=${TARGETVARIANT}
|
|
|
|
|
|
|
|
COPY . /go/src/github.com/vmware-tanzu/velero
|
2022-12-13 10:09:11 +00:00
|
|
|
|
|
|
|
RUN mkdir -p /output/usr/bin && \
|
2023-01-16 16:53:17 +00:00
|
|
|
export GOARM=$(echo "${GOARM}" | cut -c2-) && \
|
|
|
|
/go/src/github.com/vmware-tanzu/velero/hack/build-restic.sh
|
2022-12-13 10:09:11 +00:00
|
|
|
|
|
|
|
# Velero image packing section
|
2023-03-01 01:27:11 +00:00
|
|
|
FROM gcr.io/distroless/base-nossl-debian11:nonroot
|
2020-08-04 18:40:05 +00:00
|
|
|
|
|
|
|
LABEL maintainer="Nolan Brubaker <brubakern@vmware.com>"
|
|
|
|
|
2023-01-12 07:41:48 +00:00
|
|
|
COPY --from=velero-builder /output /
|
2020-08-04 18:40:05 +00:00
|
|
|
|
2022-12-13 10:09:11 +00:00
|
|
|
COPY --from=restic-builder /output /
|
|
|
|
|
2021-08-20 08:01:06 +00:00
|
|
|
USER nonroot:nonroot
|
2020-08-04 18:40:05 +00:00
|
|
|
|