0
0
mirror of https://github.com/thegeeklab/wp-ansible.git synced 2024-06-02 08:19:40 +02:00

chore(deps): update docker.io/alpine docker tag to v3.19 (#208)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Robert Kaussow <mail@thegeeklab.de>
This commit is contained in:
renovate[bot] 2023-12-08 09:41:37 +01:00 committed by GitHub
parent 3ae32fd8b4
commit c26e6c822f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 4 deletions

View File

@ -113,6 +113,7 @@ steps:
TRIVY_NO_PROGRESS: True
TRIVY_SEVERITY: HIGH,CRITICAL
TRIVY_TIMEOUT: 1m
TRIVY_SKIP_FILES: /opt/pipx/venvs/ansible/lib/**/site-packages/ansible_collections/**/modules/*.py
depends_on:
- security-build

View File

@ -8,7 +8,7 @@ WORKDIR /src
RUN make build
FROM docker.io/alpine:3.18@sha256:34871e7290500828b39e22294660bee86d966bc0017544e848dd9a255cdf59e0
FROM docker.io/alpine:3.19@sha256:51b67269f354137895d43f3b3d810bfacd3945438e94dc5ac55fdac340352f48
LABEL maintainer="ownCloud DevOps <devops@owncloud.com>"
LABEL org.opencontainers.image.authors="ownCloud DevOps <devops@owncloud.com>"
@ -24,11 +24,19 @@ ARG ANSIBLE_VERSION
# renovate: datasource=pypi depName=ansible
ENV ANSIBLE_VERSION="${ANSIBLE_VERSION:-9.0.1}"
ENV PIPX_HOME=/opt/pipx
ENV PIPX_BIN_DIR=/usr/local/bin
RUN apk --update add --virtual .build-deps python3-dev libffi-dev build-base && \
apk add --no-cache bash git curl rsync openssh-client sshpass py3-pip py3-requests py3-paramiko && \
apk add --no-cache bash git curl rsync openssh-client sshpass pipx && \
apk upgrade --no-cache libcrypto3 libssl3 && \
pip3 install -U pip && \
pip3 install ansible=="${ANSIBLE_VERSION}" boto3 hcloud pywinrm passlib jsonschema && \
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 && \
apk del .build-deps && \
rm -rf /var/cache/apk/* && \
rm -rf /tmp/*