This repository has been archived on 2024-05-25. You can view files and clone it, but cannot push or open issues or pull requests.
plugin-kaniko/Dockerfile

18 lines
510 B
Docker
Raw Normal View History

2018-12-11 23:11:40 +01:00
FROM gcr.io/kaniko-project/executor:v0.7.0 AS kaniko
2018-11-21 15:45:09 +01:00
FROM alpine:3.8
# clone the official kaniko container into this one, env vars needs to be re-set
COPY --from=kaniko / /
ENV HOME /root
ENV USER /root
ENV SSL_CERT_DIR=/kaniko/ssl/certs
ENV DOCKER_CONFIG /kaniko/.docker/
ENV DOCKER_CREDENTIAL_GCR_CONFIG /kaniko/.config/gcloud/docker_credential_gcr_config.json
2018-11-23 09:03:11 +01:00
RUN apk add --update --no-cache jq
2018-11-21 15:45:09 +01:00
# add the wrapper which acts as a drone plugin
COPY plugin.sh /usr/bin/
ENTRYPOINT [ "/usr/bin/plugin.sh" ]