0
0
mirror of https://github.com/thegeeklab/wp-ansible.git synced 2024-09-16 16:02:45 +02:00
wp-ansible/Dockerfile.multiarch

46 lines
1.6 KiB
Docker
Raw Normal View History

FROM --platform=$BUILDPLATFORM docker.io/golang:1.21@sha256:2ff79bcdaff74368a9fdcb06f6599e54a71caf520fd2357a55feddd504bcaffb as build
ARG TARGETOS
ARG TARGETARCH
ADD . /src
WORKDIR /src
RUN make build
FROM docker.io/alpine:3.19@sha256:51b67269f354137895d43f3b3d810bfacd3945438e94dc5ac55fdac340352f48
2018-07-18 17:05:45 +02:00
2021-01-26 14:05:35 +01: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"
ARG TARGETOS
ARG TARGETARCH
2021-02-09 10:45:07 +01:00
ARG ANSIBLE_VERSION
2021-01-26 14:05:35 +01:00
# renovate: datasource=pypi depName=ansible
ENV ANSIBLE_VERSION="${ANSIBLE_VERSION:-9.1.0}"
2018-07-18 17:05:45 +02:00
ENV PIPX_HOME=/opt/pipx
ENV PIPX_BIN_DIR=/usr/local/bin
2023-11-13 10:10:56 +01:00
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 && \
2023-11-13 10:20:28 +01:00
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 && \
2023-11-13 10:20:28 +01:00
apk del .build-deps && \
rm -rf /var/cache/apk/* && \
rm -rf /tmp/*
2018-07-18 17:05:45 +02:00
2023-10-30 11:44:30 +01:00
COPY --from=build /src/dist/drone-ansible /bin/drone-ansible
2018-07-18 17:05:45 +02:00
ENTRYPOINT ["/bin/drone-ansible"]