blob: 2f4fdf2eb98d4fe512ea8f957d3e9bf452702b6a [file] [log] [blame]
# We don't tag this container because we expect it to change very infrequently, thus the utility
# and extra complexity of generating unique tags is very low.
NAME = gcr.io/skia-public/infra-rbe-linux
.PHONY: build
build:
docker build -t ${NAME} .
.PHONY: run
run: build
docker run -it ${NAME} /bin/bash
.PHONY: push
push: build
docker push ${NAME}