Skip to content

Commit 6610ecc

Browse files
perigrinclaude
andcommitted
Successfully bust Docker cache with entrypoint path change
Changed COPY destination from /app/start.sh to /app/entrypoint.sh - Docker build now executes fresh COPY commands (not cached) - Machine now attempts to run /app/entrypoint.sh (correct path) - Still getting 'No such file or directory' - file copy issue persists Next: Debug why COPY command succeeds but file doesn't exist at runtime 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 5defef5 commit 6610ecc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

atheme/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ RUN chown -R atheme /atheme
7171

7272
# Copy configuration templates and startup script
7373
COPY atheme/atheme.conf.template /atheme/etc/atheme.conf.template
74-
COPY atheme/entrypoint.sh /app/start.sh
75-
RUN chmod +x /app/start.sh
74+
COPY atheme/entrypoint.sh /app/entrypoint.sh
75+
RUN chmod +x /app/entrypoint.sh
7676

7777
# Health check
7878
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
@@ -86,4 +86,4 @@ VOLUME /atheme/etc
8686

8787
# Container starts as root for Tailscale, drops to atheme user for services
8888
WORKDIR /atheme
89-
CMD ["/app/start.sh"]
89+
CMD ["/app/entrypoint.sh"]

0 commit comments

Comments
 (0)