fix: correct entrypoint.sh COPY path for root build context
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/pr/ci Pipeline was successful

This commit is contained in:
Agent 2026-04-01 18:28:45 +00:00
parent e617999074
commit 1eefd5ac72

View file

@ -23,7 +23,7 @@ RUN useradd -m -u 1000 -s /bin/bash agent
# Copy disinto code into the image # Copy disinto code into the image
COPY . /home/agent/disinto COPY . /home/agent/disinto
COPY entrypoint.sh /entrypoint.sh COPY docker/agents/entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh RUN chmod +x /entrypoint.sh
# Entrypoint runs as root to start the cron daemon; # Entrypoint runs as root to start the cron daemon;