Fix more issues with docker build

This commit is contained in:
Hendrik Kleinwaechter
2023-07-10 10:42:01 +02:00
parent ee7db7b481
commit d1ff67415f
3 changed files with 27 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ bake: mrproper
.PHONY: build_docker_image
build_docker_image:
docker build -t $(DOCKER_IMAGE) -f Dockerfile .
docker build -t $(DOCKER_IMAGE) -f Dockerfile --progress=plain .
.PHONY: push_docker_image
push_docker_image:
@@ -38,4 +38,4 @@ printvars:
.PHONY: start_shell
start_shell:
docker run -it -v $(PWD):/opt/repo $(DOCKER_IMAGE) /bin/bash
docker run -it -v $(PWD):/opt/repo $(DOCKER_IMAGE) /bin/bash