mirror of
https://github.com/servo/servo.git
synced 2025-07-05 22:43:40 +01:00
12 lines
196 B
Bash
Executable file
12 lines
196 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
set -x
|
|
|
|
image="$1"
|
|
|
|
apt-get update -q
|
|
apt-get install -qy --no-install-recommends docker.io
|
|
docker version
|
|
./docker/build.sh "$image"
|
|
docker save "$image" | lz4 > /image.tar.lz4
|