-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dont include dot-files in the Docker images #951
Comments
According to https://docs.docker.com/engine/reference/builder/#dockerignore-file excludes can be declared in the .dockerignore file. There is no minimum version mentionened. So we can ignore all dot-files with the exception of the files that are currently present in the image.
Exceptions to the exeptions are .bashrc and .vimrc which are created in a step of the Dockerfile. |
Toplevel .* files are now ignored. Testsuite still looks fine. Closing this issue. |
Local .* files are not meant for the Docker images.
Exceptions to that rule are .bash_aliases and .bash_completion. Check the Dockerfiles.
The text was updated successfully, but these errors were encountered: