8 lines
139 B
Bash
8 lines
139 B
Bash
#!/bin/sh
|
|
|
|
for i in arm32v6 arm32v6 arm64v8 amd64;
|
|
do
|
|
docker build --build-arg ARCH=$i -t serjs/test:$i .
|
|
# $IMAGE_NAME .
|
|
done
|