From eee3e4d6d9b95e8eba0a13fcbadab8ed63ac8f87 Mon Sep 17 00:00:00 2001 From: Carl Buchmann Date: Tue, 25 Apr 2023 08:56:14 -0400 Subject: [PATCH] Bump: Update docker * bump python 3.8 -> 3.10 * add rsync * bump molecule-docker -> molecule-plugins[docker] * update maintainer --- docker/Dockerfile | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 46eda4c..24d0153 100755 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,9 +1,8 @@ -FROM python:3.8-slim -# FROM avdteam/base:3.6 +FROM python:3.10-slim -LABEL "maintainer"="Thomas Grimonet " -LABEL "repository"="https://github.com/titom73/molecule-collection-actions" -LABEL "homepage"="https://github.com/titom73/molecule-collection-actions" +LABEL "maintainer"="Ansible Team " +LABEL "repository"="https://github.com/arista-netdevops-community/action-molecule-avd" +LABEL "homepage"="https://github.com/arista-netdevops-community/action-molecule-avd" LABEL "com.github.actions.name"="molecule" LABEL "com.github.actions.description"="Run Ansible Molecule" @@ -11,9 +10,9 @@ LABEL "com.github.actions.icon"="upload" LABEL "com.github.actions.color"="green" RUN apt-get update && \ - apt-get install -y --no-install-recommends build-essential wget git curl && \ + apt-get install -y --no-install-recommends build-essential wget git curl rsync && \ curl -fsSL https://get.docker.com | sh -RUN pip install --upgrade pip molecule molecule-docker +RUN pip install --upgrade pip molecule "molecule-plugins[docker]" ADD molecule-runner.sh /bin/molecule-runner.sh WORKDIR /projects