f26d9b4eec
Docker Build and Push / lint (push) Successful in 8s
Docker Build and Push / build (push) Successful in 2m34s
Docker Build and Push / test (push) Failing after 32s
Docker Build and Push / push (push) Has been skipped
Docker Build and Push / lint (pull_request) Failing after 12m19s
Docker Build and Push / build (pull_request) Has been skipped
Docker Build and Push / test (pull_request) Has been skipped
Docker Build and Push / push (pull_request) Has been skipped
32 lines
1.3 KiB
Docker
32 lines
1.3 KiB
Docker
FROM python:3.14-alpine
|
|
|
|
ARG BUILD_DATE
|
|
ARG VCS_REF
|
|
ARG VERSION
|
|
ARG ANSIBLE_REVIEW_VERSION=0.13.9
|
|
|
|
# hadolint ignore=DL3018
|
|
RUN apk --no-cache add --virtual build-dependencies \
|
|
build-base libffi-dev libressl-dev
|
|
|
|
# hadolint ignore=DL3013
|
|
RUN pip install --no-cache-dir ansible-review==0.13.9 'ansible-lint==4.1.0' && \
|
|
apk del build-dependencies
|
|
|
|
LABEL maintainer="dockerimages@cabillot.eu" \
|
|
org.label-schema.name="ansible-review" \
|
|
org.label-schema.base-image.name="docker.io/library/python" \
|
|
org.label-schema.base-image.version="3.7-alpine" \
|
|
org.label-schema.description="Ansible-review in a container" \
|
|
org.label-schema.url="https://github.com/willthames/ansible-review" \
|
|
org.label-schema.vcs-url="https://gitlab.cabillot.eu/jcabillot/ansible-review/" \
|
|
org.label-schema.vendor="Julien Cabillot" \
|
|
org.label-schema.schema-version="1.0" \
|
|
org.label-schema.applications.ansiblelint.version="latest" \
|
|
org.label-schema.vcs-ref="$VCS_REF" \
|
|
org.label-schema.version="$VERSION" \
|
|
org.label-schema.build-date="$BUILD_DATE" \
|
|
org.label-schema.usage="docker run --rm -v $(pwd):/data registry.cabillot.eu/jcabillot/ansible-review -p ."
|
|
|
|
ENTRYPOINT [ "/usr/local/bin/ansible-review" ]
|
|
CMD [ "--help" ] |