wp-kaniko-sync/Dockerfile
2025-06-18 05:50:49 +03:00

12 lines
277 B
Docker

FROM woodpeckerci/plugin-kaniko:latest
USER root
# מתקין את הכלים שאתה צריך לפעולת העדכון (למשל yq, git)
RUN apk add --no-cache bash git yq curl
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]