17 lines
435 B
Docker
17 lines
435 B
Docker
FROM alpine:3.19
|
|
|
|
# התקנת כלים שאתה צריך
|
|
RUN apk add --no-cache bash git yq curl
|
|
|
|
# הורדת Kaniko למיקום יציב
|
|
RUN curl -sSL -o /usr/local/bin/kaniko \
|
|
https://github.com/GoogleContainerTools/kaniko/releases/download/v1.21.0/executor && \
|
|
chmod +x /usr/local/bin/kaniko
|
|
|
|
ENV PATH="/usr/local/bin:$PATH"
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|