Skip to content

Commit

Permalink
Bump: Update docker
Browse files Browse the repository at this point in the history
* bump python 3.8 -> 3.10
* add rsync
* bump molecule-docker -> molecule-plugins[docker]
* update maintainer
  • Loading branch information
carlbuchmann committed Apr 25, 2023
1 parent 5ca3920 commit eee3e4d
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
FROM python:3.8-slim
# FROM avdteam/base:3.6
FROM python:3.10-slim

LABEL "maintainer"="Thomas Grimonet <tgrimonet@arista.com>"
LABEL "repository"="https://github.com/titom73/molecule-collection-actions"
LABEL "homepage"="https://github.com/titom73/molecule-collection-actions"
LABEL "maintainer"="Ansible Team <ansible@arista.com>"
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"
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
Expand Down

0 comments on commit eee3e4d

Please sign in to comment.