55 lines
1.9 KiB
Docker
55 lines
1.9 KiB
Docker
# Copyright The containerd Authors.
|
|
|
|
# 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.
|
|
|
|
ARG UBUNTU_VERSION=18.04
|
|
ARG BASE_IMAGE=ubuntu:${UBUNTU_VERSION}
|
|
ARG GO_VERSION
|
|
ARG GO_IMAGE=golang:${GO_VERSION}
|
|
FROM --platform=$BUILDPLATFORM $GO_IMAGE AS go
|
|
FROM --platform=$BUILDPLATFORM tonistiigi/xx@sha256:425941eb25cc113009b1c651bd275e04593cea12c48311fe8ace6ceeecdcc645 AS xx
|
|
|
|
FROM --platform=$BUILDPLATFORM ${BASE_IMAGE} AS base
|
|
COPY --from=xx / /
|
|
SHELL ["/bin/bash", "-xec"]
|
|
RUN apt-get update && \
|
|
apt-get install -y git pkg-config
|
|
ARG TARGETPLATFORM
|
|
RUN xx-apt-get install -y libseccomp-dev btrfs-progs gcc
|
|
ENV PATH=/usr/local/go/bin:$PATH
|
|
ENV GOPATH=/go
|
|
ENV CGO_ENABLED=1
|
|
|
|
FROM base AS linux
|
|
FROM base AS windows
|
|
# Set variables used by cni script which would otherwise shell out to powershell
|
|
ARG GATEWAY
|
|
ARG PREFIX_LEN
|
|
|
|
FROM ${TARGETOS} AS target
|
|
WORKDIR /go/src/github.com/containerd/containerd
|
|
COPY . .
|
|
ARG TARGETPLATFORM
|
|
ARG RELEASE_VER
|
|
ENV VERSION=$RELEASE_VER
|
|
RUN \
|
|
--mount=type=bind,from=go,source=/usr/local/go,target=/usr/local/go \
|
|
--mount=type=cache,target=/root/.cache/go-build \
|
|
--mount=type=cache,target=/go/pkg \
|
|
export CC=$(xx-info)-gcc && xx-go --wrap && \
|
|
make release cri-release cri-cni-release && \
|
|
for f in $(find bin -executable -type f); do xx-verify $f; done
|
|
|
|
FROM scratch AS release
|
|
COPY --from=target /go/src/github.com/containerd/containerd/releases/ /
|