skia2/docker/Makefile
Kevin Lubick 747c321922 [infra] Update cmake docker image to be Debian 10
Bug: skia:12256
Change-Id: Ic5cad6d6e5e7155f0adc26fca9f1172f33ce3b3a
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/431260
Reviewed-by: Ben Wagner <bungeman@google.com>
Commit-Queue: Ben Wagner <bungeman@google.com>
2021-07-23 11:21:31 +00:00

13 lines
557 B
Makefile

# Build gcr.io/skia-public/skia-build-tools:latest, the image used to compile
# Skia in Google Cloud Build.
push-skia-build-tools:
docker build -t skia-build-tools ./skia-build-tools
docker tag skia-build-tools gcr.io/skia-public/skia-build-tools:latest
docker push gcr.io/skia-public/skia-build-tools:latest
CMAKE_VERSION=3.13.4_v4
push-cmake-release:
docker build --no-cache --tag cmake-release ./cmake-release
docker tag cmake-release gcr.io/skia-public/cmake-release:${CMAKE_VERSION}
docker push gcr.io/skia-public/cmake-release:${CMAKE_VERSION}