mirror of
https://github.com/servo/servo.git
synced 2025-07-05 22:43:40 +01:00
7 lines
133 B
Bash
Executable file
7 lines
133 B
Bash
Executable file
#!/bin/sh
|
|
|
|
image=$1
|
|
|
|
apt-get update
|
|
apt-get install -y --no-install-recommends docker.io
|
|
docker build -t "$image" "./docker/$image/"
|