Commit 40c6d40d authored by Дмитрий Сафронов's avatar Дмитрий Сафронов
Browse files

Merge branch 'zimniy-master-patch-27248' into 'master'

Update Dockerfile

See merge request docker/ansible!28
parents 9ee5ea79 850cdd8b
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ ENV PATH="/opt/ansible/bin:$PATH"
RUN apk --no-cache add python3 && \
    apk --no-cache add --virtual build-dependencies ${ANSIBLE_BUILD_DEPENDENCIES} && \
    python3 -m venv /opt/ansible && \
    pip3 install --ignore-installed --no-cache-dir --upgrade pip setuptools wheel && \
    pip3 install --ignore-installed --no-cache-dir --upgrade --disable-pip-version-check pip setuptools wheel && \
    pip3 install --ignore-installed --no-cache-dir ansible ${ANSIBLE_PACKAGES} && \
    #apk del build-dependencies && \
    rm -rf /var/cache/apk/*