You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Dockerfile was added as per #342 which generates a minimal image, but each time an image is built, all the dependencies are downloaded again because of the cache invalidation. This can be improved by some strategic placement of instructions in the Dockerfile and resolving dependencies before coping the whole source code in.
Another possibility of improvement is exclusion of unnecessary stuff from Docker's build context by including a .dockerignore file.
The text was updated successfully, but these errors were encountered:
A Dockerfile was added as per #342 which generates a minimal image, but each time an image is built, all the dependencies are downloaded again because of the cache invalidation. This can be improved by some strategic placement of instructions in the Dockerfile and resolving dependencies before coping the whole source code in.
Another possibility of improvement is exclusion of unnecessary stuff from Docker's build context by including a
.dockerignore
file.The text was updated successfully, but these errors were encountered: