Description
Steps to reproduce the issue:
DOCKER_BUILDKIT=1 docker build \
--build-arg BUILDKIT_INLINE_CACHE=1 \
--cache-from "community-build-image:latest" \
--file docker/Dockerfile \
--tag "community-build-image:latest" \
.
Describe the results you received:
...
=> CACHED [stage-1 10/11] COPY project project 0.0s
=> CACHED [stage-1 11/11] RUN source "/root/.bashrc" && nvm use && sdk env && sbt update Test/update npmUpdate Test/npmUpdate 0.0s
------
> importing cache manifest from community-build-image:latest:
------
unexpected EOF
[1]+ Exit 2
Describe the results you expected:
The build should succeed.
Additional information you deem important (e.g. issue happens only occasionally):
Output of docker version:
Client: Docker Engine - Community
Version: 19.03.8
API version: 1.40
Go version: go1.12.17
Git commit: afacb8b7f0
Built: Wed Mar 11 01:22:56 2020
OS/Arch: linux/amd64
Experimental: false
Server: Docker Engine - Community
Engine:
Version: 19.03.8
API version: 1.40 (minimum version 1.12)
Go version: go1.12.17
Git commit: afacb8b7f0
Built: Wed Mar 11 01:30:32 2020
OS/Arch: linux/amd64
Experimental: false
containerd:
Version: v1.2.13
GitCommit: 7ad184331fa3e55e52b890ea95e65ba581ae3429
runc:
Version: 1.0.0-rc10
GitCommit: dc9208a3303feef5b3839f4323d9beb36df0a9dd
docker-init:
Version: 0.18.0
GitCommit: fec3683
Output of docker info:
Client:
Debug Mode: false
Server:
Containers: 0
Running: 0
Paused: 0
Stopped: 0
Images: 0
Server Version: 19.03.8
Storage Driver: overlay2
Backing Filesystem: <unknown>
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host ipvlan macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 7ad184331fa3e55e52b890ea95e65ba581ae3429
runc version: dc9208a3303feef5b3839f4323d9beb36df0a9dd
init version: fec3683
Security Options:
seccomp
Profile: default
Kernel Version: 4.19.76-linuxkit
Operating System: Amazon Linux 2 (containerized)
OSType: linux
Architecture: x86_64
CPUs: 6
Total Memory: 1.944GiB
Name: 64112fa3bd2a
ID: Z2SE:SWKL:JJGS:IRNP:5SPC:UKDY:WQ7Q:Z7U2:Z3GP:PN2F:5YKU:DCPP
Docker Root Dir: /var/lib/docker
Debug Mode: true
File Descriptors: 21
Goroutines: 41
System Time: 2020-05-18T21:45:23.4842333Z
EventsListeners: 0
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
Product License: Community Engine
WARNING: bridge-nf-call-iptables is disabled
WARNING: bridge-nf-call-ip6tables is disabled
Additional environment details (AWS, VirtualBox, physical, etc.):
I first encountered this when trying to build a Docker image in AWS CodeBuild using the image aws/codebuild/amazonlinux2-x86_64-standard:3.0.
I built the image myself from https://github.com/aws/aws-codebuild-docker-images/tree/master/al2/x86_64/standard/3.0 and I can reproduce it reliably.
Here is the daemon log file:
dockerd-logfile.txt
It looks as though the root cause is a stack overflow.
Description
Steps to reproduce the issue:
Describe the results you received:
Describe the results you expected:
The build should succeed.
Additional information you deem important (e.g. issue happens only occasionally):
Output of
docker version:Output of
docker info:Additional environment details (AWS, VirtualBox, physical, etc.):
I first encountered this when trying to build a Docker image in AWS CodeBuild using the image
aws/codebuild/amazonlinux2-x86_64-standard:3.0.I built the image myself from https://github.com/aws/aws-codebuild-docker-images/tree/master/al2/x86_64/standard/3.0 and I can reproduce it reliably.
Here is the daemon log file:
dockerd-logfile.txt
It looks as though the root cause is a stack overflow.