0
0
mirror of https://github.com/thegeeklab/wp-ansible.git synced 2024-09-19 15:02:47 +02:00
wp-ansible/docker/Dockerfile.amd64
renovate[bot] 43e8e8904c
chore(deps): update amd64/alpine docker tag to v3.14 (#45)
* chore(deps): update amd64/alpine docker tag to v3.14

* replace libressl with libretls

* remove libressl

* remove libressl

* cleanup

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Robert Kaussow <mail@thegeeklab.de>
2021-06-16 10:20:21 +02:00

22 lines
1.0 KiB
Docker

FROM amd64/alpine:3.14@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d
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 ANSIBLE_VERSION
# renovate: datasource=pypi depName=ansible
ENV ANSIBLE_VERSION="${ANSIBLE_VERSION:-4.1.0}"
RUN apk add --no-cache bash git curl rsync openssh-client sshpass py3-pip py3-requests py3-paramiko python3-dev libffi-dev build-base && \
pip3 install -U pip && \
pip3 install ansible=="${ANSIBLE_VERSION}" boto3 hcloud pywinrm && \
apk del --no-cache python3-dev libffi-dev build-base
ADD release/linux/amd64/drone-ansible /bin/
ENTRYPOINT ["/bin/drone-ansible"]