Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run apt-get update & apt-get install in one layer
Each RUN command in a Dockerfile add's another layer, running update and install in different layers could cause issues, because the docker layers are cached. According to dockerfile's best practices this two command sould never be run in two statments. See RUN/APT-GET in: https://docs.docker.com/develop/develop-images/dockerfile_best-practices/
- Loading branch information