Compare commits

...

10 Commits

Author SHA1 Message Date
5dc5c40a6b chore(deps): update dependency molecule to v5 (#283)
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
Reviewed-on: docker/molecule#283
Co-authored-by: Renovator Bot <renovator@rknet.org>
Co-committed-by: Renovator Bot <renovator@rknet.org>
2023-04-26 09:30:45 +02:00
ef0af3c659 chore(docker): update python:3.11-alpine docker digest to 507818d
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2023-04-07 20:06:02 +00:00
094f50ceee chore(docker): update python:3.11-alpine docker digest to 5405826
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2023-04-06 03:05:54 +00:00
545a6ef0e7 chore(docker): update python:3.11-alpine docker digest to bdd4c9a
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2023-04-06 01:35:59 +00:00
29002f35eb chore(docker): update python:3.11-alpine docker digest to 8456f4b
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2023-04-06 00:36:43 +00:00
4269ae60ce chore(docker): update python:3.11-alpine docker digest to 4b4078a
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2023-03-30 05:06:43 +00:00
17fceb3bd6 chore(docker): update python:3.11-alpine docker digest to e8cd6ca
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2023-03-30 04:36:44 +00:00
91f989312f chore(docker): update python:3.11-alpine docker digest to a78e757
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2023-03-30 02:36:05 +00:00
13f323379f chore(docker): update python:3.11-alpine docker digest to 4d53bc4
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2023-03-30 01:07:27 +00:00
b25deadf5a chore(docker): update python:3.11-alpine docker digest to f86504d
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2023-03-29 23:06:43 +00:00

View File

@ -1,4 +1,4 @@
FROM python:3.11-alpine@sha256:8af856dc9d9f8c6721f80ae6ca5e31184899f593bb77888c0b8da4772c1ec12f FROM python:3.11-alpine@sha256:507818d46649f8543e58d19a00e3a1a428bb7e87c0bf7f7d1ffe7b076cda11be
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>" LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>" LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
@ -11,7 +11,7 @@ ARG ANSIBLE_VERSION
ARG BUILD_VERSION ARG BUILD_VERSION
# renovate: datasource=pypi depName=molecule # renovate: datasource=pypi depName=molecule
ENV MOLECULE_VERSION="${BUILD_VERSION:-4.0.4}" ENV MOLECULE_VERSION="${BUILD_VERSION:-5.0.0}"
# renovate: datasource=pypi depName=ansible # renovate: datasource=pypi depName=ansible
ENV ANSIBLE_VERSION="${ANSIBLE_VERSION:-7.4.0}" ENV ANSIBLE_VERSION="${ANSIBLE_VERSION:-7.4.0}"
@ -34,10 +34,10 @@ RUN apk add --update --no-cache --virtual .build-deps build-base libffi-dev musl
MOLECULE_MAJOR="${MOLECULE_VERSION%%.*}" && \ MOLECULE_MAJOR="${MOLECULE_VERSION%%.*}" && \
if [ -z "${MOLECULE_MAJOR//[0-9]}" ] && [ -n "$MOLECULE_MAJOR" ]; then \ if [ -z "${MOLECULE_MAJOR//[0-9]}" ] && [ -n "$MOLECULE_MAJOR" ]; then \
echo "Installing molecule version '$MOLECULE_VERSION' ..." && \ echo "Installing molecule version '$MOLECULE_VERSION' ..." && \
pip install -qq --no-cache-dir molecule[docker,lint,test]=="$MOLECULE_VERSION"; \ pip install -qq --no-cache-dir molecule[docker,test]=="$MOLECULE_VERSION"; \
else \ else \
echo "Installing latest molecule ..." && \ echo "Installing latest molecule ..." && \
pip install -qq --no-cache-dir molecule[docker,lint,test]; \ pip install -qq --no-cache-dir molecule[docker,test]; \
fi && \ fi && \
apk del .build-deps && \ apk del .build-deps && \
rm -rf /var/cache/apk/* && \ rm -rf /var/cache/apk/* && \