blob: b0c9166cad05cef9912455007591ce8df52879c3 [file] [log] [blame]
Mohammed Naser7bda44d2025-01-18 15:49:44 -05001# SPDX-FileCopyrightText: © 2025 VEXXHOST, Inc.
2# SPDX-License-Identifier: GPL-3.0-or-later
3# Atmosphere-Rebuild-Time: 2024-06-26T17:38:39Z
Mohammed Naserd28fbaf2024-04-08 17:15:00 -04004
Mohammed Naser19c6c8a2024-04-18 01:47:10 -04005
Mohammed Naser7bda44d2025-01-18 15:49:44 -05006FROM openstack-venv-builder AS build
Mohammed Naserd28fbaf2024-04-08 17:15:00 -04007ARG SENLIN_GIT_REF=b6ef17b0f787fb7a0609ba36dc13097882a6a3ff
8ADD --keep-git-dir=true https://opendev.org/openstack/senlin.git#${SENLIN_GIT_REF} /src/senlin
9RUN git -C /src/senlin fetch --unshallow
10RUN --mount=type=cache,mode=0755,target=/root/.cache/pip,sharing=private <<EOF bash -xe
11pip3 install \
12 --constraint /upper-constraints.txt \
13 /src/senlin
14EOF
15
Mohammed Naser7bda44d2025-01-18 15:49:44 -050016FROM openstack-python-runtime
Mohammed Naserd28fbaf2024-04-08 17:15:00 -040017COPY --from=build --link /var/lib/openstack /var/lib/openstack