1de5cf3891
Pre-pulling the base Docker image in the deploy script prevents potential TLS certificate errors during the `docker build` process. This ensures a smoother deployment by leveraging the cached image layer.
18 lines
328 B
Plaintext
18 lines
328 B
Plaintext
# Keep the build context small. The HF model cache lives at
|
|
# /opt/stacks/doctate-canary/models/ on Minerva — without this exclude,
|
|
# `docker build` ships ~6 GB to the daemon on every run.
|
|
models/
|
|
|
|
# Not needed inside the image.
|
|
deploy.sh
|
|
*.md
|
|
.git/
|
|
.gitignore
|
|
|
|
# Python local artifacts.
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
.venv/
|
|
venv/
|