FROM --platform=$BUILDPLATFORM docker.io/golang:1.21@sha256:ae34fbf671566a533f92e5469f3f3d34e9e6fb14c826db09956454da9a84c9a9 as build ARG TARGETOS ARG TARGETARCH ADD . /src WORKDIR /src RUN make build FROM docker.io/alpine:3.19@sha256:51b67269f354137895d43f3b3d810bfacd3945438e94dc5ac55fdac340352f48 LABEL maintainer="ownCloud DevOps " LABEL org.opencontainers.image.authors="ownCloud DevOps " LABEL org.opencontainers.image.title="drone-ansible" LABEL org.opencontainers.image.url="https://github.com/owncloud-ci/drone-ansible" LABEL org.opencontainers.image.source="https://github.com/owncloud-ci/drone-ansible" LABEL org.opencontainers.image.documentation="https://github.com/owncloud-ci/drone-ansible" ARG TARGETOS ARG TARGETARCH ARG ANSIBLE_VERSION # renovate: datasource=pypi depName=ansible ENV ANSIBLE_VERSION="${ANSIBLE_VERSION:-9.1.0}" ENV PIPX_HOME=/opt/pipx ENV PIPX_BIN_DIR=/usr/local/bin RUN apk --update add --virtual .build-deps python3-dev libffi-dev build-base && \ apk add --no-cache bash git curl rsync openssh-client sshpass pipx && \ apk upgrade --no-cache libcrypto3 libssl3 && \ pipx install ansible=="${ANSIBLE_VERSION}" --include-deps && \ pipx inject ansible boto3 && \ pipx inject ansible hcloud && \ pipx inject ansible pywinrm && \ pipx inject ansible passlib && \ pipx inject ansible jsonschema && \ $PIPX_HOME/shared/bin/pip install -U pip setuptools && \ apk del .build-deps && \ rm -rf /var/cache/apk/* && \ rm -rf /tmp/* COPY --from=build /src/dist/drone-ansible /bin/drone-ansible ENTRYPOINT ["/bin/drone-ansible"]