0
0
mirror of https://github.com/thegeeklab/wp-ansible.git synced 2024-06-02 18:29:40 +02:00
wp-ansible/Dockerfile.multiarch

34 lines
1.3 KiB
Docker
Raw Normal View History

FROM --platform=$BUILDPLATFORM docker.io/golang:1.21@sha256:81cd210ae58a6529d832af2892db822b30d84f817a671b8e1c15cff0b271a3db as build
ARG TARGETOS
ARG TARGETARCH
ADD . /src
WORKDIR /src
RUN make build
FROM docker.io/alpine:3.18@sha256:eece025e432126ce23f223450a0326fbebde39cdf496a85d8c016293fc851978
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:-8.6.1}"
2018-07-18 17:05:45 +02:00
RUN apk add --no-cache bash git curl rsync openssh-client sshpass py3-pip py3-requests py3-paramiko python3-dev libffi-dev build-base && \
2019-09-11 13:49:39 +02:00
pip3 install -U pip && \
2023-07-26 12:43:36 +02:00
pip3 install ansible=="${ANSIBLE_VERSION}" boto3 hcloud pywinrm passlib jsonschema && \
apk del --no-cache python3-dev libffi-dev build-base
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"]