mirror of
https://github.com/DrewThomasson/ebook2audiobook.git
synced 2026-01-09 13:58:14 -05:00
Create .dockerignore
This should ignore anything that is not needed for the docker image and clear space by not copying the .git/ folder
This commit is contained in:
25
.dockerignore
Normal file
25
.dockerignore
Normal file
@@ -0,0 +1,25 @@
|
||||
# Ignore Git repository files
|
||||
.git/
|
||||
|
||||
# Ignore Docker-related files (not needed in the image)
|
||||
# Dockerfile
|
||||
# .dockerignore
|
||||
|
||||
# Ignore cache and temporary files
|
||||
.cache
|
||||
tmp/*
|
||||
|
||||
# Ignore all files and subdirectories in models/ EXCEPT version.txt
|
||||
models/*
|
||||
!models/version.txt
|
||||
|
||||
# Ignore virtual environments (if using venv)
|
||||
python_env/
|
||||
|
||||
# Ignore compiled Python bytecode
|
||||
**/__pycache__/
|
||||
|
||||
# Ignore specific directories inside the `audiobooks` project
|
||||
audiobooks/cli/*
|
||||
audiobooks/gui/gradio/*
|
||||
audiobooks/gui/host/*
|
||||
Reference in New Issue
Block a user