314 lines
13 KiB
Docker
314 lines
13 KiB
Docker
# syntax = docker/dockerfile:1.1-experimental
|
|
|
|
ARG RUNC_VERSION=v1.0.0-rc10
|
|
ARG CONTAINERD_VERSION=v1.3.2
|
|
# containerd v1.2 for integration tests
|
|
ARG CONTAINERD_OLD_VERSION=v1.2.11
|
|
# available targets: buildkitd, buildkitd.oci_only, buildkitd.containerd_only
|
|
ARG BUILDKIT_TARGET=buildkitd
|
|
ARG REGISTRY_VERSION=2.7.1
|
|
ARG ROOTLESSKIT_VERSION=v0.9.1
|
|
ARG ROOTLESS_BASE_MODE=external
|
|
ARG CNI_VERSION=v0.8.5
|
|
ARG SHADOW_VERSION=4.8.1
|
|
ARG FUSEOVERLAYFS_VERSION=v0.7.6
|
|
|
|
# git stage is used for checking out remote repository sources
|
|
FROM --platform=$BUILDPLATFORM alpine AS git
|
|
RUN apk add --no-cache git xz
|
|
|
|
# xgo is a helper for golang cross-compilation
|
|
FROM --platform=$BUILDPLATFORM tonistiigi/xx:golang@sha256:6f7d999551dd471b58f70716754290495690efa8421e0a1fcf18eb11d0c0a537 AS xgo
|
|
|
|
# gobuild is base stage for compiling go/cgo
|
|
FROM --platform=$BUILDPLATFORM golang:1.13-buster AS gobuild-minimal
|
|
COPY --from=xgo / /
|
|
RUN apt-get update && apt-get install --no-install-recommends -y libseccomp-dev file
|
|
|
|
# on amd64 you can also cross-compile to other platforms
|
|
FROM gobuild-minimal AS gobuild-cross-amd64
|
|
RUN dpkg --add-architecture s390x && \
|
|
dpkg --add-architecture ppc64el && \
|
|
dpkg --add-architecture armel && \
|
|
dpkg --add-architecture armhf && \
|
|
dpkg --add-architecture arm64 && \
|
|
apt-get update && \
|
|
apt-get --no-install-recommends install -y \
|
|
gcc-s390x-linux-gnu libc6-dev-s390x-cross libseccomp-dev:s390x \
|
|
crossbuild-essential-ppc64el libseccomp-dev:ppc64el \
|
|
crossbuild-essential-armel libseccomp-dev:armel \
|
|
crossbuild-essential-armhf libseccomp-dev:armhf \
|
|
crossbuild-essential-arm64 libseccomp-dev:arm64 \
|
|
--no-install-recommends
|
|
|
|
# define all valid target configurations for compilation
|
|
FROM gobuild-minimal AS gobuild-amd64-amd64
|
|
FROM gobuild-minimal AS gobuild-arm-arm
|
|
FROM gobuild-minimal AS gobuild-s390x-s390x
|
|
FROM gobuild-minimal AS gobuild-ppc64le-ppc64le
|
|
FROM gobuild-minimal AS gobuild-arm64-arm64
|
|
FROM gobuild-cross-amd64 AS gobuild-amd64-arm
|
|
FROM gobuild-cross-amd64 AS gobuild-amd64-s390x
|
|
FROM gobuild-cross-amd64 AS gobuild-amd64-ppc64le
|
|
FROM gobuild-cross-amd64 AS gobuild-amd64-arm64
|
|
FROM gobuild-$BUILDARCH-$TARGETARCH AS gobuild-base
|
|
|
|
# runc source
|
|
FROM git AS runc-src
|
|
ARG RUNC_VERSION
|
|
WORKDIR /usr/src
|
|
RUN git clone https://github.com/opencontainers/runc.git runc \
|
|
&& cd runc && git checkout -q "$RUNC_VERSION"
|
|
|
|
# build runc binary
|
|
FROM gobuild-base AS runc
|
|
WORKDIR $GOPATH/src/github.com/opencontainers/runc
|
|
ARG TARGETPLATFORM
|
|
RUN --mount=from=runc-src,src=/usr/src/runc,target=. --mount=target=/root/.cache,type=cache \
|
|
CGO_ENABLED=1 go build -ldflags '-w -extldflags -static' -tags 'seccomp netgo cgo static_build osusergo' -o /usr/bin/runc ./ && \
|
|
file /usr/bin/runc | grep "statically linked"
|
|
|
|
FROM gobuild-base AS buildkit-base
|
|
WORKDIR /src
|
|
ENV GOFLAGS=-mod=vendor
|
|
|
|
# scan the version/revision info
|
|
FROM buildkit-base AS buildkit-version
|
|
# TODO: PKG should be inferred from go modules
|
|
RUN --mount=target=. \
|
|
PKG=github.com/moby/buildkit VERSION=$(git describe --match 'v[0-9]*' --dirty='.m' --always --tags) REVISION=$(git rev-parse HEAD)$(if ! git diff --no-ext-diff --quiet --exit-code; then echo .m; fi); \
|
|
echo "-X ${PKG}/version.Version=${VERSION} -X ${PKG}/version.Revision=${REVISION} -X ${PKG}/version.Package=${PKG}" | tee /tmp/.ldflags; \
|
|
echo -n "${VERSION}" | tee /tmp/.version;
|
|
|
|
# build buildctl binary
|
|
FROM buildkit-base AS buildctl
|
|
ENV CGO_ENABLED=0
|
|
ARG TARGETPLATFORM
|
|
RUN --mount=target=. --mount=target=/root/.cache,type=cache \
|
|
--mount=target=/go/pkg/mod,type=cache \
|
|
--mount=source=/tmp/.ldflags,target=/tmp/.ldflags,from=buildkit-version \
|
|
set -x; go build -ldflags "$(cat /tmp/.ldflags)" -o /usr/bin/buildctl ./cmd/buildctl && \
|
|
file /usr/bin/buildctl && file /usr/bin/buildctl | egrep "statically linked|Mach-O|Windows"
|
|
|
|
# build buildkitd binary
|
|
FROM buildkit-base AS buildkitd
|
|
ARG TARGETPLATFORM
|
|
ARG BUILDKITD_TAGS
|
|
RUN --mount=target=. --mount=target=/root/.cache,type=cache \
|
|
--mount=target=/go/pkg/mod,type=cache \
|
|
--mount=source=/tmp/.ldflags,target=/tmp/.ldflags,from=buildkit-version \
|
|
go build -ldflags "$(cat /tmp/.ldflags) -w -extldflags -static" -tags "osusergo netgo static_build seccomp ${BUILDKITD_TAGS}" -o /usr/bin/buildkitd ./cmd/buildkitd && \
|
|
file /usr/bin/buildkitd | egrep "statically linked|Windows"
|
|
|
|
FROM scratch AS binaries-linux-helper
|
|
COPY --from=runc /usr/bin/runc /buildkit-runc
|
|
FROM binaries-linux-helper AS binaries-linux
|
|
COPY --from=buildctl /usr/bin/buildctl /
|
|
COPY --from=buildkitd /usr/bin/buildkitd /
|
|
|
|
FROM scratch AS binaries-darwin
|
|
COPY --from=buildctl /usr/bin/buildctl /
|
|
|
|
FROM scratch AS binaries-windows
|
|
COPY --from=buildctl /usr/bin/buildctl /buildctl.exe
|
|
|
|
FROM binaries-$TARGETOS AS binaries
|
|
|
|
FROM --platform=$BUILDPLATFORM alpine AS releaser
|
|
RUN apk add --no-cache tar gzip
|
|
WORKDIR /work
|
|
ARG TARGETPLATFORM
|
|
RUN --mount=from=binaries \
|
|
--mount=source=/tmp/.version,target=/tmp/.version,from=buildkit-version \
|
|
mkdir -p /out && tar czvf "/out/buildkit-$(cat /tmp/.version).$(echo $TARGETPLATFORM | sed 's/\//-/g').tar.gz" --mtime='2015-10-21 00:00Z' --sort=name --transform 's/^./bin/' .
|
|
|
|
FROM scratch AS release
|
|
COPY --from=releaser /out/ /
|
|
|
|
FROM tonistiigi/git@sha256:393483e1cef35f09e1a8fe0a0bd93a78b1b6ecec5b5afa5fa5d600fa3ab1fdd8 AS buildkit-export
|
|
COPY examples/buildctl-daemonless/buildctl-daemonless.sh /usr/bin/
|
|
VOLUME /var/lib/buildkit
|
|
|
|
FROM git AS containerd-src
|
|
ARG CONTAINERD_VERSION
|
|
WORKDIR /usr/src
|
|
RUN git clone https://github.com/containerd/containerd.git containerd
|
|
|
|
FROM gobuild-base AS containerd-base
|
|
RUN apt-get --no-install-recommends install -y btrfs-progs libbtrfs-dev
|
|
WORKDIR /go/src/github.com/containerd/containerd
|
|
|
|
FROM containerd-base AS containerd
|
|
ARG CONTAINERD_VERSION
|
|
RUN --mount=from=containerd-src,src=/usr/src/containerd,readwrite --mount=target=/root/.cache,type=cache \
|
|
git fetch origin \
|
|
&& git checkout -q "$CONTAINERD_VERSION" \
|
|
&& make bin/containerd \
|
|
&& make bin/containerd-shim \
|
|
&& make bin/ctr \
|
|
&& mv bin /out
|
|
|
|
# containerd v1.2 for integration tests
|
|
FROM containerd-base as containerd-old
|
|
ARG CONTAINERD_OLD_VERSION
|
|
RUN --mount=from=containerd-src,src=/usr/src/containerd,readwrite --mount=target=/root/.cache,type=cache \
|
|
git fetch origin \
|
|
&& git checkout -q "$CONTAINERD_OLD_VERSION" \
|
|
&& make bin/containerd \
|
|
&& make bin/containerd-shim \
|
|
&& mv bin /out
|
|
|
|
ARG REGISTRY_VERSION
|
|
FROM registry:$REGISTRY_VERSION AS registry
|
|
|
|
FROM gobuild-base AS rootlesskit
|
|
ARG ROOTLESSKIT_VERSION
|
|
RUN git clone https://github.com/rootless-containers/rootlesskit.git /go/src/github.com/rootless-containers/rootlesskit
|
|
WORKDIR /go/src/github.com/rootless-containers/rootlesskit
|
|
ARG TARGETPLATFORM
|
|
RUN --mount=target=/root/.cache,type=cache \
|
|
git checkout -q "$ROOTLESSKIT_VERSION" && \
|
|
CGO_ENABLED=0 go build -o /rootlesskit ./cmd/rootlesskit && \
|
|
file /rootlesskit | grep "statically linked"
|
|
|
|
# Based on https://github.com/containers/fuse-overlayfs/blob/v0.7.6/Dockerfile.static.ubuntu .
|
|
# We can't use Alpine here because Alpine does not provide an apk package for libfuse3.a .
|
|
FROM --platform=$BUILDPLATFORM debian:10 AS fuse-overlayfs
|
|
RUN apt-get update && \
|
|
apt-get install --no-install-recommends -y \
|
|
git ca-certificates libc6-dev gcc make automake autoconf pkgconf libfuse3-dev file curl
|
|
RUN git clone https://github.com/containers/fuse-overlayfs
|
|
WORKDIR fuse-overlayfs
|
|
ARG FUSEOVERLAYFS_VERSION
|
|
RUN git pull && git checkout ${FUSEOVERLAYFS_VERSION}
|
|
ARG TARGETPLATFORM
|
|
RUN curl -o /cross.sh https://raw.githubusercontent.com/AkihiroSuda/tonistiigi-binfmt/c0f14b94cdb5b6de0afd1c4b5118891b1174fefc/binfmt/scripts/cross.sh && \
|
|
chmod +x /cross.sh && \
|
|
/cross.sh install gcc pkgconf libfuse3-dev | sh
|
|
RUN ./autogen.sh && \
|
|
CC=$(/cross.sh cross-prefix)-gcc LD=$(/cross.sh cross-prefix)-ld LIBS="-ldl" LDFLAGS="-static" ./configure && \
|
|
make && mkdir /out && cp fuse-overlayfs /out && \
|
|
file /out/fuse-overlayfs | grep "statically linked"
|
|
|
|
# Copy together all binaries needed for oci worker mode
|
|
FROM buildkit-export AS buildkit-buildkitd.oci_only
|
|
COPY --from=buildkitd.oci_only /usr/bin/buildkitd.oci_only /usr/bin/
|
|
COPY --from=buildctl /usr/bin/buildctl /usr/bin/
|
|
ENTRYPOINT ["buildkitd.oci_only"]
|
|
|
|
# Copy together all binaries for containerd worker mode
|
|
FROM buildkit-export AS buildkit-buildkitd.containerd_only
|
|
COPY --from=buildkitd.containerd_only /usr/bin/buildkitd.containerd_only /usr/bin/
|
|
COPY --from=buildctl /usr/bin/buildctl /usr/bin/
|
|
ENTRYPOINT ["buildkitd.containerd_only"]
|
|
|
|
# Copy together all binaries for oci+containerd mode
|
|
FROM buildkit-export AS buildkit-buildkitd-linux
|
|
COPY --from=binaries / /usr/bin/
|
|
ENTRYPOINT ["buildkitd"]
|
|
|
|
FROM binaries AS buildkit-buildkitd-darwin
|
|
|
|
FROM binaries AS buildkit-buildkitd-windows
|
|
# this is not in binaries-windows because it is not intended for release yet, just CI
|
|
COPY --from=buildkitd /usr/bin/buildkitd /buildkitd.exe
|
|
|
|
FROM buildkit-buildkitd-$TARGETOS AS buildkit-buildkitd
|
|
|
|
FROM alpine AS containerd-runtime
|
|
COPY --from=runc /usr/bin/runc /usr/bin/
|
|
COPY --from=containerd /out/containerd* /usr/bin/
|
|
COPY --from=containerd /out/ctr /usr/bin/
|
|
VOLUME /var/lib/containerd
|
|
VOLUME /run/containerd
|
|
ENTRYPOINT ["containerd"]
|
|
|
|
FROM --platform=$BUILDPLATFORM alpine AS cni-plugins
|
|
RUN apk add --no-cache curl
|
|
ARG CNI_VERSION
|
|
ARG TARGETOS
|
|
ARG TARGETARCH
|
|
WORKDIR /opt/cni/bin
|
|
RUN curl -Ls https://github.com/containernetworking/plugins/releases/download/$CNI_VERSION/cni-plugins-$TARGETOS-$TARGETARCH-$CNI_VERSION.tgz | tar xzv
|
|
|
|
FROM buildkit-base AS integration-tests-base
|
|
ENV BUILDKIT_INTEGRATION_ROOTLESS_IDPAIR="1000:1000"
|
|
RUN apt-get --no-install-recommends install -y uidmap sudo vim iptables \
|
|
&& useradd --create-home --home-dir /home/user --uid 1000 -s /bin/sh user \
|
|
&& echo "XDG_RUNTIME_DIR=/run/user/1000; export XDG_RUNTIME_DIR" >> /home/user/.profile \
|
|
&& mkdir -m 0700 -p /run/user/1000 \
|
|
&& chown -R user /run/user/1000 /home/user \
|
|
&& update-alternatives --set iptables /usr/sbin/iptables-legacy
|
|
# musl is needed to directly use the registry binary that is built on alpine
|
|
#ENV BUILDKIT_INTEGRATION_CONTAINERD_EXTRA="containerd-1.2=/opt/containerd-old/bin"
|
|
COPY --from=rootlesskit /rootlesskit /usr/bin/
|
|
COPY --from=containerd-old /out/containerd* /opt/containerd-old/bin/
|
|
COPY --from=registry /bin/registry /usr/bin
|
|
COPY --from=runc /usr/bin/runc /usr/bin
|
|
COPY --from=containerd /out/containerd* /usr/bin/
|
|
COPY --from=cni-plugins /opt/cni/bin/bridge /opt/cni/bin/host-local /opt/cni/bin/loopback /opt/cni/bin/
|
|
COPY hack/fixtures/cni.json /etc/buildkit/cni.json
|
|
COPY --from=binaries / /usr/bin/
|
|
|
|
FROM integration-tests-base AS integration-tests
|
|
COPY . .
|
|
ENV BUILDKIT_RUN_NETWORK_INTEGRATION_TESTS=1 BUILDKIT_CNI_INIT_LOCK_PATH=/run/buildkit_cni_bridge.lock
|
|
|
|
FROM integration-tests AS dev-env
|
|
VOLUME /var/lib/buildkit
|
|
|
|
# newuidmap & newgidmap binaries (shadow-uidmap 4.7-r1) shipped with alpine:3.11 cannot be executed without CAP_SYS_ADMIN,
|
|
# because the binaries are built without libcap-dev.
|
|
# So we need to build the binaries with libcap enabled.
|
|
FROM --platform=$BUILDPLATFORM debian:10 AS idmap
|
|
RUN apt-get update && apt-get install --no-install-recommends -y automake autopoint bison ca-certificates curl file gettext git gcc libcap-dev libtool make
|
|
RUN git clone https://github.com/shadow-maint/shadow.git /shadow
|
|
WORKDIR /shadow
|
|
ARG SHADOW_VERSION
|
|
RUN git checkout $SHADOW_VERSION
|
|
ARG TARGETPLATFORM
|
|
RUN curl -o /cross.sh https://raw.githubusercontent.com/AkihiroSuda/tonistiigi-binfmt/c0f14b94cdb5b6de0afd1c4b5118891b1174fefc/binfmt/scripts/cross.sh && \
|
|
chmod +x /cross.sh && \
|
|
/cross.sh install gcc pkgconf libcap-dev | sh
|
|
RUN CC=$(/cross.sh cross-prefix)-gcc LD=$(/cross.sh cross-prefix)-ld ./autogen.sh --disable-nls --disable-man --without-audit --without-selinux --without-acl --without-attr --without-tcb --without-nscd \
|
|
&& make \
|
|
&& cp src/newuidmap src/newgidmap /usr/bin \
|
|
&& file /usr/bin/newuidmap | grep "statically linked" \
|
|
&& file /usr/bin/newgidmap | grep "statically linked"
|
|
|
|
FROM alpine:3.11 AS rootless-base-internal
|
|
RUN apk add --no-cache fuse3 git xz
|
|
COPY --from=idmap /usr/bin/newuidmap /usr/bin/newuidmap
|
|
COPY --from=idmap /usr/bin/newgidmap /usr/bin/newgidmap
|
|
COPY --from=fuse-overlayfs /out/fuse-overlayfs /usr/bin/
|
|
# we could just set CAP_SETUID filecap rather than `chmod u+s`, but requires kernel >= 4.14
|
|
RUN chmod u+s /usr/bin/newuidmap /usr/bin/newgidmap \
|
|
&& adduser -D -u 1000 user \
|
|
&& mkdir -p /run/user/1000 /home/user/.local/tmp /home/user/.local/share/buildkit \
|
|
&& chown -R user /run/user/1000 /home/user \
|
|
&& echo user:100000:65536 | tee /etc/subuid | tee /etc/subgid
|
|
|
|
# tonistiigi/buildkit:rootless-base is a pre-built multi-arch version of rootless-base-internal https://github.com/moby/buildkit/pull/1392#issuecomment-597478241 (Mar 11, 2020)
|
|
FROM tonistiigi/buildkit:rootless-base@sha256:4b15b62dadfec92ca6e6633b94ac8e24d2235c9c50c35a7b80e4e951e9f6f735 AS rootless-base-external
|
|
FROM rootless-base-$ROOTLESS_BASE_MODE AS rootless-base
|
|
|
|
# Rootless mode.
|
|
FROM rootless-base AS rootless
|
|
COPY --from=rootlesskit /rootlesskit /usr/bin/
|
|
COPY --from=binaries / /usr/bin/
|
|
COPY examples/buildctl-daemonless/buildctl-daemonless.sh /usr/bin/
|
|
# Kubernetes runAsNonRoot requires USER to be numeric
|
|
USER 1000:1000
|
|
ENV HOME /home/user
|
|
ENV USER user
|
|
ENV XDG_RUNTIME_DIR=/run/user/1000
|
|
ENV TMPDIR=/home/user/.local/tmp
|
|
ENV BUILDKIT_HOST=unix:///run/user/1000/buildkit/buildkitd.sock
|
|
VOLUME /home/user/.local/share/buildkit
|
|
ENTRYPOINT ["rootlesskit", "buildkitd"]
|
|
|
|
|
|
FROM buildkit-${BUILDKIT_TARGET}
|
|
|
|
|