Skip to content

Commit 5ae3d24

Browse files
Hristo Hristovclaude
andcommitted
Fix Docker build by commenting out missing directories
- Comment out COPY commands for non-existent config/ and scripts/ directories - Prevents Docker build failures in CI pipeline - Directories can be added later when needed 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 6aca299 commit 5ae3d24

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ USER aecuser
4747

4848
# Copy application code
4949
COPY --chown=aecuser:aecuser src/ ./src/
50-
COPY --chown=aecuser:aecuser config/ ./config/
51-
COPY --chown=aecuser:aecuser scripts/ ./scripts/
50+
# COPY --chown=aecuser:aecuser config/ ./config/ # Directory not present
51+
# COPY --chown=aecuser:aecuser scripts/ ./scripts/ # Directory not present
5252
COPY --chown=aecuser:aecuser .env.example ./
5353

5454
# Create data directories

0 commit comments

Comments
 (0)