Your ROOT_URL in app.ini is https://bdgit.educoder.net/ but you are visiting http://bdgit.educoder.net/rcore_test/rCore-Tutorial-v3-tests/blame/commit/a61d34e2b1afbb94b92ab5e1bba4d7aed270faba/Makefile You should set ROOT_URL correctly, otherwise the web may not work correctly.
rCore-Tutorial-v3-tests/Makefile

9 lines
219 B

DOCKER_NAME ?= dinghao188/rcore-tutorial
4 years ago
.PHONY: docker build_docker
docker:
docker run --rm -it --mount type=bind,source=$(shell pwd),destination=/mnt ${DOCKER_NAME}
build_docker:
4 years ago
docker build -t ${DOCKER_NAME} .