David Chu
commited on
fix: copy tools and prompts into image
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -26,6 +26,8 @@ RUN --mount=type=cache,target=/home/appuser/.cache/uv,uid=1001,gid=1001 \
|
|
26 |
uv --cache-dir=/home/appuser/.cache/uv sync --frozen --no-install-project --no-dev
|
27 |
|
28 |
COPY --chown=1001 main.py main.py
|
|
|
|
|
29 |
|
30 |
RUN uv sync --frozen --no-cache --no-dev --compile-bytecode
|
31 |
|
|
|
26 |
uv --cache-dir=/home/appuser/.cache/uv sync --frozen --no-install-project --no-dev
|
27 |
|
28 |
COPY --chown=1001 main.py main.py
|
29 |
+
COPY --chown=1001 tools/ tools/
|
30 |
+
COPY --chown=1001 system_instruction.txt system_instruction.txt
|
31 |
|
32 |
RUN uv sync --frozen --no-cache --no-dev --compile-bytecode
|
33 |
|