fix: move entrypoint.sh to project root (deploy/ is in .dockerignore)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-02-26 12:14:31 -08:00
parent bad7f4802d
commit f0ad6e09e6
2 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ RUN adduser -D -h /home/appuser appuser && \
chown -R appuser:appuser /app /data/claude-tenants /home/appuser/.ssh chown -R appuser:appuser /app /data/claude-tenants /home/appuser/.ssh
# Copy entrypoint script (runs as root to fix SSH key permissions, then drops to appuser) # Copy entrypoint script (runs as root to fix SSH key permissions, then drops to appuser)
COPY deploy/docker/entrypoint.sh /entrypoint.sh COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh RUN chmod +x /entrypoint.sh
ARG SERVICE_PORT=3000 ARG SERVICE_PORT=3000