15 lines
389 B
Text
15 lines
389 B
Text
# https://medium.com/@bounouh.fedi/mastering-the-dockerignore-file-boosting-docker-build-efficiency-398719f4a0e1
|
|
|
|
# Ignore version control (directories), not needed in container
|
|
.git
|
|
.git/
|
|
.gitignore
|
|
|
|
# If we're cacheing cpan modules, so they are not downloaded every time
|
|
# ignore these caches in the container
|
|
.cpanrc
|
|
cpan-cache/
|
|
|
|
# Ignore Docker-related files
|
|
Dockerfile*
|
|
.dockerignore
|