Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
added clean docker in, removed  "DOCKER_BUILDKIT=0" to use the default build engine
  • Loading branch information
rs0125 authored Oct 27, 2024
1 parent 514f542 commit e625406
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ UID=$(shell id -u $(USER))

# build the docker image
.PHONY: build_image
build_image:
DOCKER_BUILDKIT=0 docker build -f docker/$(CONTAINERNAME)/Dockerfile . \
build_image: clean_docker
docker build -f docker/$(CONTAINERNAME)/Dockerfile . \
-t $(VENDORNAME)/$(PROJECTNAME)/$(CONTAINERNAME):dev --build-arg uid=$(UID) --build-arg user=$(USER)

# compile the .gba file and run in in your emulator
Expand Down

0 comments on commit e625406

Please sign in to comment.