12 lines
277 B
Docker
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"]
|