File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ ENV PYTHONUNBUFFERED=1
1717
1818# Install Python requirements
1919COPY src/requirements.txt /tmp/pip-tmp/
20- RUN pip3 -- disable-pip-version-check --no-cache-dir install -r /tmp/pip-tmp/requirements.txt \
20+ RUN pip3 install --upgrade -- disable-pip-version-check --no-cache-dir -r /tmp/pip-tmp/requirements.txt \
2121 && rm -rf /tmp/pip-tmp
2222
2323# Install the latest version of cfn-lint which is needed in the local environment only
2424# https://github.com/aws-cloudformation/cfn-lint-visual-studio-code
25- RUN pip3 install --disable-pip-version-check --no-cache-dir cfn-lint
25+ RUN pip3 install --upgrade -- disable-pip-version-check --no-cache-dir cfn-lint
2626
2727# Install boto3 in the local environment
2828# RUN pip3 install --disable-pip-version-check --no-cache-dir "boto3==1.*"
You can’t perform that action at this time.
0 commit comments