directory structure in Dockerfile
I have a directory and it's structure is something like this: . ├── docker │ ├── docker-compose.yml │ └── Dockerfile ├── java-app │ ├── pom.xml │ └── src I want to create a docker image without changing the structure but…