mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
9 lines
243 B
Bash
Executable File
9 lines
243 B
Bash
Executable File
#!/bin/bash
|
|
|
|
TAG="${CIRRUS_TAG:-latest}"
|
|
|
|
# pull to make sure we are not rebuilding for nothing
|
|
sudo docker pull "gcr.io/flutter-cirrus/build-flutter-image:$TAG"
|
|
|
|
sudo docker build "$@" --tag "gcr.io/flutter-cirrus/build-flutter-image:$TAG" .
|