Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
edf847e5
Unverified
Commit
edf847e5
authored
Jan 22, 2026
by
Alec
Committed by
GitHub
Jan 23, 2026
Browse files
fix: add pre-commit cache dir and improve dockerignore (#5588)
Signed-off-by:
alec-flowers
<
aflowers@nvidia.com
>
parent
66963b70
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
.dockerignore
.dockerignore
+4
-1
container/dev/Dockerfile.dev
container/dev/Dockerfile.dev
+3
-1
No files found.
.dockerignore
View file @
edf847e5
...
...
@@ -19,6 +19,8 @@
**/*.plan
**/*.etcd
**/.cache/*
**/__pycache__
**/*.pyc
**/*onnx*
# Engine must be allowed because code contains dynamo_engine.py
**/*tensorrtllm_engines*
...
...
@@ -43,6 +45,7 @@ container/Dockerfile*
.venv
.venv-docs
# Python
__pycache__/
*.pyc
...
...
container/dev/Dockerfile.dev
View file @
edf847e5
...
...
@@ -464,7 +464,9 @@ RUN SNIPPET="export PROMPT_COMMAND='history -a' && export HISTFILE=$HOME/.comman
&& echo "$SNIPPET" >> "$HOME/.bashrc"
RUN mkdir -p /home/$USERNAME/.cache/ \
&& chmod g+w /home/$USERNAME/.cache/
&& mkdir -p /home/$USERNAME/.cache/pre-commit \
&& chmod g+w /home/$USERNAME/.cache/ \
&& chmod g+w /home/$USERNAME/.cache/pre-commit
ENTRYPOINT ["/opt/nvidia/nvidia_entrypoint.sh"]
CMD []
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment