From 29af5ddb4cda933cb1043f86f3d3ac144b6effb5 Mon Sep 17 00:00:00 2001 From: Bill Date: Sun, 2 Nov 2025 19:18:12 -0500 Subject: [PATCH] fix: remove non-existent data scripts from Dockerfile The get_daily_price.py, get_interdaily_price.py, and merge_jsonl.py scripts don't exist in the repository. Removed the RUN command that tries to copy these files to /app/scripts/. This fixes the Docker build failure: ERROR: process did not complete successfully: exit code: 1 The API server doesn't need these data preparation scripts as it operates on existing database records. --- Dockerfile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1cafe5d..bb3d711 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,12 +26,6 @@ WORKDIR /app # Copy application code COPY . . -# Copy data scripts to separate directory (volume mount won't overlay these) -RUN mkdir -p /app/scripts && \ - cp data/get_daily_price.py /app/scripts/ && \ - cp data/get_interdaily_price.py /app/scripts/ && \ - cp data/merge_jsonl.py /app/scripts/ - # Create necessary directories RUN mkdir -p data logs data/agent_data