0
0
mirror of https://github.com/thegeeklab/wp-ansible.git synced 2024-11-10 03:20:39 +00:00
wp-ansible/docker/Dockerfile.arm64

22 lines
1.0 KiB
Docker
Raw Normal View History

2021-10-06 19:12:12 +00:00
FROM arm64v8/alpine:3.14@sha256:b06a5cf61b2956088722c4f1b9a6f71dfe95f0b1fe285d44195452b8a1627de7
2018-07-18 15:05:45 +00:00
2021-01-26 11:37:19 +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"
2018-07-18 15:05:45 +00:00
2021-02-09 09:45:07 +00:00
ARG ANSIBLE_VERSION
2021-01-26 13:05:35 +00:00
# renovate: datasource=pypi depName=ansible
ENV ANSIBLE_VERSION="${ANSIBLE_VERSION:-4.8.0}"
2021-01-26 13:05:35 +00: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 11:49:39 +00:00
pip3 install -U pip && \
2021-06-07 14:04:57 +00:00
pip3 install ansible=="${ANSIBLE_VERSION}" boto3 hcloud pywinrm && \
apk del --no-cache python3-dev libffi-dev build-base
2018-07-18 15:05:45 +00:00
ADD release/linux/arm64/drone-ansible /bin/
ENTRYPOINT ["/bin/drone-ansible"]