We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75071fe commit b05e058Copy full SHA for b05e058
ci/run-docker.sh
@@ -7,6 +7,14 @@ set -ex
7
8
run() {
9
echo "Building docker container for target ${1}"
10
+
11
+ # FIXME: Hacky workaround. Docker build seems to work better if we pull the base images first
12
+ ubuntu_images=( 16.04 17.10 18.04 )
13
+ for i in "${ubuntu_images[@]}"
14
+ do
15
+ docker pull ubuntu:$i
16
+ done
17
18
# use -f so we can use ci/ as build context
19
docker build -t libc -f "ci/docker/${1}/Dockerfile" ci/
20
mkdir -p target
0 commit comments