Files
coder/dogfood/Makefile
T
Ammar Bandukwala 1b3e75c3ab add watchexec to dogfood image (#3858)
* add watchexec to dogfood image

This comes in handy quite frequently.

* Fix dogfood image
2022-09-03 18:38:13 -05:00

11 lines
220 B
Makefile

.PHONY: docker-build docker-push
branch=$(shell git rev-parse --abbrev-ref HEAD)
build_tag=codercom/oss-dogfood:${branch}
build:
DOCKER_BUILDKIT=1 docker build . -t ${build_tag}
push: build
docker push ${build_tag}