We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a5ecaf commit 44c2f65Copy full SHA for 44c2f65
2 files changed
Dockerfile
@@ -7,7 +7,8 @@ ENV PATH=/root/.local/bin:$PATH
7
COPY dist/*.whl /wheelhouse/
8
RUN uv init -p 3.12
9
RUN uv add `ls /wheelhouse/*.whl`
10
-RUN uv run python -c "import nltk; nltk.download('punkt'); nltk.download('punkt_tab')"
+ENV NLTK_DATA=/root/nltk_data
11
+RUN uv run python -c "import nltk; nltk.download('punkt_tab'); nltk.download('popular')"
12
ENV PATH=/app/.venv/bin:$PATH
13
RUN brag version
14
justfile
@@ -83,3 +83,13 @@ shell:
83
--unset-env='*' \
84
--set-env \
85
-- bash
86
+
87
+shell-test:
88
+ #!/bin/bash
89
+ module load charliecloud
90
+ unset CH_IMAGE_AUTH
91
+ ch-run -W {{ name }}:{{ tag }} \
92
+ --unset-env='*' \
93
+ --bind tmp:/docs \
94
+ --set-env \
95
+ -- bash
0 commit comments