2022-08-03 22:36:13 +02:00
|
|
|
# syntax=docker/dockerfile:1
|
2020-08-17 16:20:02 +02:00
|
|
|
|
|
|
|
|
2020-09-22 12:13:00 +02:00
|
|
|
# Copyright 2020 Docker Compose CLI authors
|
2020-06-18 16:13:24 +02: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.
|
2020-09-22 12:13:00 +02:00
|
|
|
|
Update to go 1.19.2 to address CVE-2022-2879, CVE-2022-2880, CVE-2022-41715
From the mailing list:
We have just released Go versions 1.19.2 and 1.18.7, minor point releases.
These minor releases include 3 security fixes following the security policy:
- archive/tar: unbounded memory consumption when reading headers
Reader.Read did not set a limit on the maximum size of file headers.
A maliciously crafted archive could cause Read to allocate unbounded
amounts of memory, potentially causing resource exhaustion or panics.
Reader.Read now limits the maximum size of header blocks to 1 MiB.
Thanks to Adam Korczynski (ADA Logics) and OSS-Fuzz for reporting this issue.
This is CVE-2022-2879 and Go issue https://go.dev/issue/54853.
- net/http/httputil: ReverseProxy should not forward unparseable query parameters
Requests forwarded by ReverseProxy included the raw query parameters from the
inbound request, including unparseable parameters rejected by net/http. This
could permit query parameter smuggling when a Go proxy forwards a parameter
with an unparseable value.
ReverseProxy will now sanitize the query parameters in the forwarded query
when the outbound request's Form field is set after the ReverseProxy.Director
function returns, indicating that the proxy has parsed the query parameters.
Proxies which do not parse query parameters continue to forward the original
query parameters unchanged.
Thanks to Gal Goldstein (Security Researcher, Oxeye) and
Daniel Abeles (Head of Research, Oxeye) for reporting this issue.
This is CVE-2022-2880 and Go issue https://go.dev/issue/54663.
- regexp/syntax: limit memory used by parsing regexps
The parsed regexp representation is linear in the size of the input,
but in some cases the constant factor can be as high as 40,000,
making relatively small regexps consume much larger amounts of memory.
Each regexp being parsed is now limited to a 256 MB memory footprint.
Regular expressions whose representation would use more space than that
are now rejected. Normal use of regular expressions is unaffected.
Thanks to Adam Korczynski (ADA Logics) and OSS-Fuzz for reporting this issue.
This is CVE-2022-41715 and Go issue https://go.dev/issue/55949.
View the release notes for more information: https://go.dev/doc/devel/release#go1.19.2
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-10-04 21:27:06 +02:00
|
|
|
ARG GO_VERSION=1.19.2
|
2022-08-12 15:05:52 +02:00
|
|
|
ARG XX_VERSION=1.1.2
|
2022-09-06 23:59:11 +02:00
|
|
|
ARG GOLANGCI_LINT_VERSION=v1.49.0
|
2022-08-12 15:05:52 +02:00
|
|
|
ARG ADDLICENSE_VERSION=v1.0.0
|
|
|
|
|
|
|
|
ARG BUILD_TAGS="e2e,kube"
|
|
|
|
ARG DOCS_FORMATS="md,yaml"
|
|
|
|
ARG LICENSE_FILES=".*\(Dockerfile\|Makefile\|\.go\|\.hcl\|\.sh\)"
|
|
|
|
|
|
|
|
# xx is a helper for cross-compilation
|
|
|
|
FROM --platform=${BUILDPLATFORM} tonistiigi/xx:${XX_VERSION} AS xx
|
|
|
|
|
|
|
|
FROM golangci/golangci-lint:${GOLANGCI_LINT_VERSION}-alpine AS golangci-lint
|
|
|
|
FROM ghcr.io/google/addlicense:${ADDLICENSE_VERSION} AS addlicense
|
|
|
|
|
|
|
|
FROM --platform=${BUILDPLATFORM} golang:${GO_VERSION}-alpine AS base
|
|
|
|
COPY --from=xx / /
|
|
|
|
RUN apk add --no-cache \
|
|
|
|
docker \
|
|
|
|
file \
|
|
|
|
git \
|
2022-08-26 22:06:24 +02:00
|
|
|
make \
|
2022-08-12 15:05:52 +02:00
|
|
|
protoc \
|
|
|
|
protobuf-dev
|
|
|
|
WORKDIR /src
|
|
|
|
ENV CGO_ENABLED=0
|
|
|
|
|
|
|
|
FROM base AS build-base
|
2020-05-29 11:30:12 +02:00
|
|
|
COPY go.* .
|
2020-09-23 17:13:27 +02:00
|
|
|
RUN --mount=type=cache,target=/go/pkg/mod \
|
2021-05-19 16:59:21 +02:00
|
|
|
--mount=type=cache,target=/root/.cache/go-build \
|
2020-09-23 17:13:27 +02:00
|
|
|
go mod download
|
2020-05-04 23:49:40 +02:00
|
|
|
|
2022-08-12 15:05:52 +02:00
|
|
|
FROM build-base AS vendored
|
|
|
|
RUN --mount=type=bind,target=.,rw \
|
2020-09-23 17:13:27 +02:00
|
|
|
--mount=type=cache,target=/go/pkg/mod \
|
2022-08-12 15:05:52 +02:00
|
|
|
go mod tidy && mkdir /out && cp go.mod go.sum /out
|
|
|
|
|
|
|
|
FROM scratch AS vendor-update
|
|
|
|
COPY --from=vendored /out /
|
|
|
|
|
|
|
|
FROM vendored AS vendor-validate
|
|
|
|
RUN --mount=type=bind,target=.,rw <<EOT
|
|
|
|
set -e
|
|
|
|
git add -A
|
|
|
|
cp -rf /out/* .
|
|
|
|
diff=$(git status --porcelain -- go.mod go.sum)
|
|
|
|
if [ -n "$diff" ]; then
|
|
|
|
echo >&2 'ERROR: Vendor result differs. Please vendor your package with "make go-mod-tidy"'
|
|
|
|
echo "$diff"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
EOT
|
|
|
|
|
2022-09-26 15:45:22 +02:00
|
|
|
FROM vendored AS modules-validate
|
|
|
|
RUN apk add --no-cache bash
|
|
|
|
RUN apk add --no-cache jq
|
|
|
|
RUN --mount=type=bind,target=.,rw ./verify-go-modules.sh e2e
|
|
|
|
|
2022-08-12 15:05:52 +02:00
|
|
|
FROM build-base AS build
|
2020-06-15 17:41:59 +02:00
|
|
|
ARG BUILD_TAGS
|
2022-08-12 15:05:52 +02:00
|
|
|
ARG TARGETPLATFORM
|
2022-08-26 22:06:24 +02:00
|
|
|
RUN xx-go --wrap
|
2022-08-12 15:05:52 +02:00
|
|
|
RUN --mount=type=bind,target=. \
|
|
|
|
--mount=type=cache,target=/root/.cache \
|
2020-09-23 17:13:27 +02:00
|
|
|
--mount=type=cache,target=/go/pkg/mod \
|
2022-08-26 22:06:24 +02:00
|
|
|
make build GO_BUILDTAGS="$BUILD_TAGS" DESTDIR=/usr/bin && \
|
2022-08-12 15:05:52 +02:00
|
|
|
xx-verify --static /usr/bin/docker-compose
|
2021-05-27 12:10:37 +02:00
|
|
|
|
2022-08-12 15:05:52 +02:00
|
|
|
FROM build-base AS lint
|
|
|
|
ARG BUILD_TAGS
|
|
|
|
RUN --mount=type=bind,target=. \
|
|
|
|
--mount=type=cache,target=/root/.cache \
|
|
|
|
--mount=from=golangci-lint,source=/usr/bin/golangci-lint,target=/usr/bin/golangci-lint \
|
|
|
|
golangci-lint run --build-tags "$BUILD_TAGS" ./...
|
2020-04-22 10:04:11 +02:00
|
|
|
|
2022-08-12 15:05:52 +02:00
|
|
|
FROM build-base AS test
|
|
|
|
ARG CGO_ENABLED=0
|
2020-07-07 15:48:09 +02:00
|
|
|
ARG BUILD_TAGS
|
2022-08-12 15:05:52 +02:00
|
|
|
RUN --mount=type=bind,target=. \
|
|
|
|
--mount=type=cache,target=/root/.cache \
|
2020-09-23 17:13:27 +02:00
|
|
|
--mount=type=cache,target=/go/pkg/mod \
|
2022-08-12 15:05:52 +02:00
|
|
|
go test -tags "$BUILD_TAGS" -v -coverprofile=/tmp/coverage.txt -covermode=atomic $(go list $(TAGS) ./... | grep -vE 'e2e') && \
|
|
|
|
go tool cover -func=/tmp/coverage.txt
|
|
|
|
|
|
|
|
FROM scratch AS test-coverage
|
|
|
|
COPY --from=test /tmp/coverage.txt /coverage.txt
|
|
|
|
|
|
|
|
FROM base AS license-set
|
|
|
|
ARG LICENSE_FILES
|
|
|
|
RUN --mount=type=bind,target=.,rw \
|
|
|
|
--mount=from=addlicense,source=/app/addlicense,target=/usr/bin/addlicense \
|
|
|
|
find . -regex "${LICENSE_FILES}" | xargs addlicense -c 'Docker Compose CLI' -l apache && \
|
|
|
|
mkdir /out && \
|
|
|
|
find . -regex "${LICENSE_FILES}" | cpio -pdm /out
|
|
|
|
|
|
|
|
FROM scratch AS license-update
|
|
|
|
COPY --from=set /out /
|
|
|
|
|
|
|
|
FROM base AS license-validate
|
|
|
|
ARG LICENSE_FILES
|
|
|
|
RUN --mount=type=bind,target=. \
|
|
|
|
--mount=from=addlicense,source=/app/addlicense,target=/usr/bin/addlicense \
|
|
|
|
find . -regex "${LICENSE_FILES}" | xargs addlicense -check -c 'Docker Compose CLI' -l apache -ignore validate -ignore testdata -ignore resolvepath -v
|
|
|
|
|
|
|
|
FROM base AS docsgen
|
|
|
|
WORKDIR /src
|
2020-08-17 15:18:47 +02:00
|
|
|
RUN --mount=target=. \
|
2022-08-12 15:05:52 +02:00
|
|
|
--mount=target=/root/.cache,type=cache \
|
|
|
|
go build -o /out/docsgen ./docs/yaml/main/generate.go
|
|
|
|
|
|
|
|
FROM --platform=${BUILDPLATFORM} alpine AS docs-build
|
|
|
|
RUN apk add --no-cache rsync git
|
|
|
|
WORKDIR /src
|
|
|
|
COPY --from=docsgen /out/docsgen /usr/bin
|
|
|
|
ARG DOCS_FORMATS
|
|
|
|
RUN --mount=target=/context \
|
|
|
|
--mount=target=.,type=tmpfs <<EOT
|
|
|
|
set -e
|
|
|
|
rsync -a /context/. .
|
|
|
|
docsgen --formats "$DOCS_FORMATS" --source "docs/reference"
|
|
|
|
mkdir /out
|
|
|
|
cp -r docs/reference /out
|
|
|
|
EOT
|
|
|
|
|
|
|
|
FROM scratch AS docs-update
|
|
|
|
COPY --from=docs-build /out /out
|
|
|
|
|
|
|
|
FROM docs-build AS docs-validate
|
|
|
|
RUN --mount=target=/context \
|
|
|
|
--mount=target=.,type=tmpfs <<EOT
|
|
|
|
set -e
|
|
|
|
rsync -a /context/. .
|
|
|
|
git add -A
|
|
|
|
rm -rf docs/reference/*
|
|
|
|
cp -rf /out/* ./docs/
|
|
|
|
if [ -n "$(git status --porcelain -- docs/reference)" ]; then
|
|
|
|
echo >&2 'ERROR: Docs result differs. Please update with "make docs"'
|
|
|
|
git status --porcelain -- docs/reference
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
EOT
|
|
|
|
|
|
|
|
FROM scratch AS binary-unix
|
|
|
|
COPY --link --from=build /usr/bin/docker-compose /
|
|
|
|
FROM binary-unix AS binary-darwin
|
|
|
|
FROM binary-unix AS binary-linux
|
|
|
|
FROM scratch AS binary-windows
|
|
|
|
COPY --link --from=build /usr/bin/docker-compose /docker-compose.exe
|
|
|
|
FROM binary-$TARGETOS AS binary
|
|
|
|
|
|
|
|
FROM --platform=$BUILDPLATFORM alpine AS releaser
|
|
|
|
WORKDIR /work
|
|
|
|
ARG TARGETOS
|
|
|
|
ARG TARGETARCH
|
|
|
|
ARG TARGETVARIANT
|
|
|
|
RUN --mount=from=binary \
|
|
|
|
mkdir -p /out && \
|
|
|
|
# TODO: should just use standard arch
|
|
|
|
TARGETARCH=$([ "$TARGETARCH" = "amd64" ] && echo "x86_64" || echo "$TARGETARCH"); \
|
|
|
|
TARGETARCH=$([ "$TARGETARCH" = "arm64" ] && echo "aarch64" || echo "$TARGETARCH"); \
|
2022-08-14 22:29:57 +02:00
|
|
|
cp docker-compose* "/out/docker-compose-${TARGETOS}-${TARGETARCH}${TARGETVARIANT}$(ls docker-compose* | sed -e 's/^docker-compose//')"
|
2022-08-12 15:05:52 +02:00
|
|
|
|
|
|
|
FROM scratch AS release
|
|
|
|
COPY --from=releaser /out/ /
|
2022-06-24 18:40:04 +02:00
|
|
|
|
|
|
|
# docs-reference is a target used as remote context to update docs on release
|
2022-09-29 19:09:25 +02:00
|
|
|
# with latest changes on docs.docker.com.
|
2022-06-24 18:40:04 +02:00
|
|
|
# see open-pr job in .github/workflows/docs.yml for more details
|
|
|
|
FROM scratch AS docs-reference
|
|
|
|
COPY docs/reference/*.yaml .
|