File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ FROM {{ ci_base | default(pulp_default_container) }}
55ADD ./{{ item.name }} ./{{ item.name }}
66{% endfor %}
77
8- # Install python packages
9- # S3 botocore needs to be patched to handle responses from minio during 0-byte uploads
10- # Hacking botocore (https://github.com/boto/botocore/pull/1990)
8+ {% for item in extra_files | default ([]) %}
9+ ADD ./{{ item.origin }} {{ item.destination }}
10+ {% endfor %}
1111
1212# This MUST be the ONLY call to pip install in inside the container.
1313RUN pip3 install --upgrade pip setuptools wheel && \
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ deploy_client_to_rubygems: true
2020deploy_to_pypi : true
2121disabled_redis_runners : []
2222docker_fixtures : false
23+ extra_files : []
2324flake8 : true
2425flake8_ignore : []
2526github_org : pulp
@@ -65,3 +66,4 @@ test_reroute: true
6566test_s3 : true
6667test_storages_compat_layer : false
6768use_issue_template : true
69+
You can’t perform that action at this time.
0 commit comments