Could someone please help explain how to create an allin1 docker file?
https://github.com/StarRocks/starrocks/blob/main/docker/dockerfiles/allin1/README.md
I have a docker container that I've built starrocks in (with my local changes). I tried running this command:
docker build --build-arg ARTIFACT_SOURCE=starrocks--build-arg LOCAL_REPO_PATH=/starrocks -f allin1-ubuntu.Dockerfile -t allin1-ubuntu:test ../../../
where starrocks is the name of the docker container and LOCAL_REPO_PATH is the path to the starrocks directory inside that container.
I get the error "failed to read dockerfile: open allin1-ubuntu.Dockerfile: no such file or directory."
Am I making a mistake somewhere?