2015-02-27 22:37:25 -07:00
|
|
|
# docker build -t docker:simple -f Dockerfile.simple .
|
|
|
|
# docker run --rm docker:simple hack/make.sh dynbinary
|
2015-03-09 18:24:49 -06:00
|
|
|
# docker run --rm --privileged docker:simple hack/dind hack/make.sh test-unit
|
2017-06-16 17:18:44 -07:00
|
|
|
# docker run --rm --privileged -v /var/lib/docker docker:simple hack/dind hack/make.sh dynbinary test-integration
|
2015-02-27 22:37:25 -07:00
|
|
|
|
|
|
|
# This represents the bare minimum required to build and test Docker.
|
|
|
|
|
Update Go to 1.17.3
go1.17.3 (released 2021-11-04) includes security fixes to the archive/zip and
debug/macho packages, as well as bug fixes to the compiler, linker, runtime, the
go command, the misc/wasm directory, and to the net/http and syscall packages.
See the Go 1.17.3 milestone on our issue tracker for details.
From the announcement e-mail:
[security] Go 1.17.3 and Go 1.16.10 are released
We have just released Go versions 1.17.3 and 1.16.10, minor point releases.
These minor releases include two security fixes following the security policy:
- archive/zip: don't panic on (*Reader).Open
Reader.Open (the API implementing io/fs.FS introduced in Go 1.16) can be made
to panic by an attacker providing either a crafted ZIP archive containing
completely invalid names or an empty filename argument.
Thank you to Colin Arnott, SiteHost and Noah Santschi-Cooney, Sourcegraph Code
Intelligence Team for reporting this issue. This is CVE-2021-41772 and Go issue
golang.org/issue/48085.
- debug/macho: invalid dynamic symbol table command can cause panic
Malformed binaries parsed using Open or OpenFat can cause a panic when calling
ImportedSymbols, due to an out-of-bounds slice operation.
Thanks to Burak Çarıkçı - Yunus Yıldırım (CT-Zer0 Crypttech) for reporting this
issue. This is CVE-2021-41771 and Go issue golang.org/issue/48990.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2021-11-05 10:55:40 +01:00
|
|
|
ARG GO_VERSION=1.17.3
|
2019-07-17 13:59:16 +02:00
|
|
|
|
2021-08-19 21:16:01 +02:00
|
|
|
ARG BASE_DEBIAN_DISTRO="bullseye"
|
|
|
|
ARG GOLANG_IMAGE="golang:${GO_VERSION}-${BASE_DEBIAN_DISTRO}"
|
|
|
|
|
|
|
|
FROM ${GOLANG_IMAGE}
|
2019-09-11 09:36:53 +02:00
|
|
|
ENV GO111MODULE=off
|
2015-02-27 22:37:25 -07:00
|
|
|
|
2016-11-20 14:14:51 -08:00
|
|
|
# allow replacing httpredir or deb mirror
|
|
|
|
ARG APT_MIRROR=deb.debian.org
|
|
|
|
RUN sed -ri "s/(httpredir|deb).debian.org/$APT_MIRROR/g" /etc/apt/sources.list
|
|
|
|
|
2016-09-22 10:15:18 +08:00
|
|
|
# Compile and runtime deps
|
2015-02-27 22:37:25 -07:00
|
|
|
# https://github.com/docker/docker/blob/master/project/PACKAGERS.md#build-dependencies
|
|
|
|
# https://github.com/docker/docker/blob/master/project/PACKAGERS.md#runtime-dependencies
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
2016-03-25 13:19:13 +09:00
|
|
|
build-essential \
|
2015-03-17 23:08:17 -06:00
|
|
|
curl \
|
2016-11-03 09:47:50 -07:00
|
|
|
cmake \
|
2015-02-27 22:37:25 -07:00
|
|
|
gcc \
|
|
|
|
git \
|
2016-03-25 13:19:13 +09:00
|
|
|
libapparmor-dev \
|
2021-02-03 21:07:10 +00:00
|
|
|
libbtrfs-dev \
|
2015-02-27 22:37:25 -07:00
|
|
|
libdevmapper-dev \
|
2017-09-25 10:03:37 +00:00
|
|
|
libseccomp-dev \
|
2015-02-27 22:37:25 -07:00
|
|
|
ca-certificates \
|
|
|
|
e2fsprogs \
|
|
|
|
iptables \
|
2018-01-11 18:02:08 +00:00
|
|
|
pkg-config \
|
2018-01-16 10:49:18 -08:00
|
|
|
pigz \
|
2015-02-27 22:37:25 -07:00
|
|
|
procps \
|
2015-11-11 14:29:02 -08:00
|
|
|
xfsprogs \
|
2015-02-27 22:37:25 -07:00
|
|
|
xz-utils \
|
|
|
|
\
|
2016-11-03 09:47:50 -07:00
|
|
|
vim-common \
|
2015-02-27 22:37:25 -07:00
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
2016-11-03 09:47:50 -07:00
|
|
|
# Install runc, containerd, tini and docker-proxy
|
2018-02-16 13:51:30 -05:00
|
|
|
# Please edit hack/dockerfile/install/<name>.installer to update them.
|
|
|
|
COPY hack/dockerfile/install hack/dockerfile/install
|
|
|
|
RUN for i in runc containerd tini proxy dockercli; \
|
|
|
|
do hack/dockerfile/install/install.sh $i; \
|
|
|
|
done
|
2017-04-17 18:18:46 -05:00
|
|
|
ENV PATH=/usr/local/cli:$PATH
|
2016-06-27 14:38:47 -07:00
|
|
|
|
2015-02-27 22:37:25 -07:00
|
|
|
ENV AUTO_GOPATH 1
|
|
|
|
WORKDIR /usr/src/docker
|
|
|
|
COPY . /usr/src/docker
|