Skip to content

Commit 7b5c725

Browse files
committed
🐳 fix(docker): include justfile in runtime image
Copy justfile into the bot container and symlink it into /app/bot so Available recipes: arch-test bench-kdf build tag="latest" # Docker targets check check-fast clean-docker default # Default target finish-task plan_name fmt lint metrics migrate-wallet-crypto-v2 args="--dry-run" push-gitdocker tag="latest" run secret-scan shell start-task task_id title="" test test-e2e-smoke test-external test-fast typecheck-full works from both /app and /app/bot during operational maintenance tasks.
1 parent fff4fc6 commit 7b5c725

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,10 @@ COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv
7676
# Copy only runtime application code
7777
COPY bot ./bot
7878
COPY shared ./shared
79+
COPY justfile ./justfile
7980

8081
# Create directories for volumes
81-
RUN mkdir -p logs data db
82+
RUN mkdir -p logs data db && ln -sf /app/justfile /app/bot/justfile
8283

8384
# Set working directory to bot
8485
WORKDIR /app/bot

0 commit comments

Comments
 (0)