There are two approchesapproach:
Put al the files in the same directory where the you kept the Dockerfile. And And be in that persent directory, then execute the
docker rundocker run command. You You cannot pass any relative path, all files should be in same folder.Put all the required files except the Dockerfile in a diffrent path. Use Use the "-f-
-f- /PATH/PATH" option indocker rundocker run command from the current directory where your Dockerfile is present. Or you can give the full path of the docker file.
docker build -t docker.io/rohitbasu77/php:7.2-apache -f- /sys/fs/cgroup < Dockerfile
docker build -t docker.io/rohitbasu77/php:7.2-apache -f- /sys/fs/cgroup < Dockerfile
OR
docker build -t docker.io/rohitbasu77/php:7.2-apache -f- /sys/fs/cgroup </root/GIT/otrs5/Dockerfile
docker build -t docker.io/rohitbasu77/php:7.2-apache -f- /sys/fs/cgroup </root/GIT/otrs5/Dockerfile
Now the root pathpathe where the files are kept is /sys/fs/cgroup//sys/fs/cgroup/. Youyou can copy everything from here. Putput all your folders and file under this root path.
/root/GIT/otrs5/Dockerfile:
/root/GIT/otrs5/Dockerfile:
FROM php:7.2-apache
ADD . /tmp/fs/cgroup/.
FROM php:7.2-apache
With this last line, everything from your local ADD . /tmp/fs/cgroup/. #Every thing from your local /sys/fs/cgroup/* is copied to a new folder is copied to a new folder /tmp/fs/cgroup (if not present will be created) (if not present will be created)