Use 2023 docker image as base

This commit is contained in:
Hendrik Kleinwaechter
2023-07-10 17:55:33 +02:00
parent d1ff67415f
commit 0aa5aab860
3 changed files with 6 additions and 37 deletions

View File

@@ -36,6 +36,10 @@ show_tools_version:
printvars:
docker run -it -v $(PWD):/opt/repo $(DOCKER_IMAGE) /bin/bash -c "cd /opt/repo/book && make printvars"
.PHONY: print_os_version
print_os_version:
docker run -it -v $(PWD):/opt/repo $(DOCKER_IMAGE) /bin/bash -c "cat /etc/*release"
.PHONY: start_shell
start_shell:
docker run -it -v $(PWD):/opt/repo $(DOCKER_IMAGE) /bin/bash