11 lines
494 B
Plaintext
11 lines
494 B
Plaintext
|
|
# .dockerignore for llama-swap-rocm (build context is project root)
|
||
|
|
# The Dockerfile.llamaswap-rocm doesn't COPY anything from the build context —
|
||
|
|
# everything is git-cloned in multi-stage builds. Exclude everything to avoid
|
||
|
|
# sending ~31 GB of unnecessary build context (models, backups, etc.)
|
||
|
|
|
||
|
|
# Exclude everything by default
|
||
|
|
*
|
||
|
|
|
||
|
|
# Only include what the Dockerfile actually needs (nothing from context currently)
|
||
|
|
# If the Dockerfile changes to COPY files, add exceptions here with !filename
|