How to seperate COPY to multiple steps for caching in Dockerfile
I'm building an Docker image with big files (>1.0GB) and small python scripts. Big files are rarely changed, so I want to caching it. The directory is looks like: - app/ - main.py - modules/ - foo.py - bar.py -…