We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0758236 commit b75bc63Copy full SHA for b75bc63
Dockerfile
@@ -49,7 +49,8 @@ RUN ln -s /lib /lib64 \
49
&& \
50
pip${PYTHON_VERSION} install pip --upgrade && \
51
pip${PYTHON_VERSION} install --upgrade --no-cache-dir -r /opt/requirements.txt && \
52
- pip${PYTHON_VERSION} install --upgrade --no-cache-dir ansible==${ANSIBLE_VERSION} \
+ # avoid Jinja 2.11 until https://github.com/pallets/jinja/issues/1138
53
+ pip${PYTHON_VERSION} install --upgrade --no-cache-dir ansible==${ANSIBLE_VERSION} Jinja2==2.8 \
54
55
ln -s $(which python${PYTHON_VERSION}) /bin/python \
56
0 commit comments