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