Files
coder/dogfood/Makefile
T
Dean Sheather b07b40b346 chore: revert nix dogfood image (#11022)
The nix image isn't used because it doesn't work, and we haven't been
updating our "pre-nix" tag since the changes were made. Reverts back to
being a regular Dockerfile.
2023-12-05 09:02:57 +00: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}