2023-11-16 07:54:42 +00:00
|
|
|
FROM --platform=$BUILDPLATFORM docker.io/golang:1.21@sha256:57bf74a970b68b10fe005f17f550554406d9b696d10b29f1a4bdc8cae37fd063 as build
|
2023-10-30 10:40:39 +00:00
|
|
|
|
|
|
|
ARG TARGETOS
|
|
|
|
ARG TARGETARCH
|
|
|
|
|
|
|
|
ADD . /src
|
|
|
|
WORKDIR /src
|
|
|
|
|
|
|
|
RUN make build
|
|
|
|
|
2023-10-11 07:31:13 +00:00
|
|
|
FROM docker.io/alpine:3.18@sha256:eece025e432126ce23f223450a0326fbebde39cdf496a85d8c016293fc851978
|
2018-07-18 15:05:45 +00:00
|
|
|
|
2021-01-26 13:05:35 +00:00
|
|
|
LABEL maintainer="ownCloud DevOps <devops@owncloud.com>"
|
|
|
|
LABEL org.opencontainers.image.authors="ownCloud DevOps <devops@owncloud.com>"
|
|
|
|
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"
|
|
|
|
|
2023-10-30 10:40:39 +00:00
|
|
|
ARG TARGETOS
|
|
|
|
ARG TARGETARCH
|
2021-02-09 09:45:07 +00:00
|
|
|
ARG ANSIBLE_VERSION
|
|
|
|
|
2021-01-26 13:05:35 +00:00
|
|
|
# renovate: datasource=pypi depName=ansible
|
2023-11-10 07:36:31 +00:00
|
|
|
ENV ANSIBLE_VERSION="${ANSIBLE_VERSION:-8.6.1}"
|
2018-07-18 15:05:45 +00:00
|
|
|
|
2023-11-13 09:10:56 +00:00
|
|
|
RUN apk --update add --virtual .build-deps python3-dev libffi-dev build-base && \
|
2023-11-13 09:20:28 +00:00
|
|
|
apk add --no-cache bash git curl rsync openssh-client sshpass py3-pip py3-requests py3-paramiko && \
|
|
|
|
apk upgrade --no-cache libcrypto3 libssl3 && \
|
|
|
|
pip3 install -U pip && \
|
|
|
|
pip3 install ansible=="${ANSIBLE_VERSION}" boto3 hcloud pywinrm passlib jsonschema && \
|
|
|
|
apk del .build-deps && \
|
|
|
|
rm -rf /var/cache/apk/* && \
|
|
|
|
rm -rf /tmp/*
|
2018-07-18 15:05:45 +00:00
|
|
|
|
2023-10-30 10:44:30 +00:00
|
|
|
COPY --from=build /src/dist/drone-ansible /bin/drone-ansible
|
2018-07-18 15:05:45 +00:00
|
|
|
ENTRYPOINT ["/bin/drone-ansible"]
|