We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0758236 commit cae2284Copy full SHA for cae2284
Dockerfile
@@ -49,7 +49,9 @@ 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} \
+ pip${PYTHON_VERSION} install --upgrade --no-cache-dir ansible==${ANSIBLE_VERSION} && \
53
+ # avoid Jinja 2.11 until https://github.com/pallets/jinja/issues/1138
54
+ pip${PYTHON_VERSION} install Jinja2==2.8 \
55
56
ln -s $(which python${PYTHON_VERSION}) /bin/python \
57
0 commit comments