diff --git a/docker/ci-full/Dockerfile b/docker/ci-full/Dockerfile index c2eae0d..5bb2e37 100644 --- a/docker/ci-full/Dockerfile +++ b/docker/ci-full/Dockerfile @@ -11,6 +11,10 @@ FROM git.oblachno.oblachno.fyi/oblachno-oss/runner-images/ci-quality:latest SHELL ["/bin/bash", "-o", "pipefail", "-c"] +# Install rsync (required by molecule_docker for file sync between host and test containers) +RUN apt-get update && apt-get install -y --no-install-recommends rsync \ + && rm -rf /var/lib/apt/lists/* + # Install devx[release,molecule,deploy] from local source COPY . /tmp/devx RUN pip install --no-cache-dir /tmp/devx[release,molecule,deploy] \