FROM --platform=$BUILDPLATFORM docker.io/golang:1.21@sha256:5f5d61dcb58900bc57b230431b6367c900f9982b583adcabf9fa93fd0aa5544a as build ARG TARGETOS ARG TARGETARCH ADD . /src WORKDIR /src RUN make build FROM docker.io/python:3.12-alpine@sha256:801b54e1ec51c23dd6f174f3f26a0ff5bf2a002c4bc0bf05b0e2b9237e10f5b8 LABEL maintainer="Robert Kaussow " LABEL org.opencontainers.image.authors="Robert Kaussow " LABEL org.opencontainers.image.title="wp-ansible" LABEL org.opencontainers.image.url="https://github.com/thegeeklab/wp-ansible" LABEL org.opencontainers.image.source="https://github.com/thegeeklab/wp-ansible" LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/wp-ansible" ARG TARGETOS ARG TARGETARCH ARG ANSIBLE_VERSION # renovate: datasource=pypi depName=ansible ENV ANSIBLE_VERSION="${ANSIBLE_VERSION:-9.1.0}" RUN apk --update add --virtual .build-deps python3-dev libffi-dev build-base && \ apk add --no-cache bash git curl rsync openssh-client sshpass && \ apk upgrade --no-cache libcrypto3 libssl3 && \ pip install -qq --no-cache-dir --upgrade pip && \ pip install -qq --no-cache-dir ansible=="${ANSIBLE_VERSION}" \ boto3 hcloud pywinrm passlib jsonschema && \ apk del .build-deps && \ rm -rf /var/cache/apk/* && \ rm -rf /tmp/* && \ rm -rf /root/.cache/ COPY --from=build /src/dist/wp-ansible /bin/wp-ansible ENTRYPOINT ["/bin/wp-ansible"]