
- Stop building Yoga and Zed since these releases are unmaintained See https://releases.openstack.org/ - Use Openstack build playbooks that we have been using since 2023.2 - Do not publish openstackhelm/requirements image. Use it locally to speed up the build process. Change-Id: I7c63ee98125bf0988b3926e40dd916087cbb9476
9 lines
249 B
Docker
9 lines
249 B
Docker
ARG FROM="requirements:latest"
|
|
FROM ${FROM} AS requirements
|
|
|
|
FROM nginx:alpine
|
|
|
|
# Previously built requirements image
|
|
COPY --from=requirements / /usr/share/nginx/html
|
|
RUN cd /usr/share/nginx/html; tar c -f wheels.tar.gz -z *.whl *.txt; rm -f *.whl
|