blob: 0b836abdd01a8b836f8e407abf54f00a5d89c2fe [file] [log] [blame]
Mohammed Naserf1ac3f82025-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 Naserda994232024-04-13 12:34:01 -04004
Mohammed Naserf1ac3f82025-01-18 15:49:44 -05005FROM openstack-venv-builder AS build
Mohammed Naser142dc922024-06-20 21:19:25 -04006ARG BARBICAN_GIT_REF=00274b2f07d050c5b4571bfc0f4e5698acf678f1
Mohammed Naserda994232024-04-13 12:34:01 -04007ADD --keep-git-dir=true https://opendev.org/openstack/barbican.git#${BARBICAN_GIT_REF} /src/barbican
8RUN git -C /src/barbican fetch --unshallow
9RUN --mount=type=cache,mode=0755,target=/root/.cache/pip,sharing=private <<EOF bash -xe
10pip3 install \
11 --constraint /upper-constraints.txt \
12 /src/barbican \
13 pykmip
14EOF
15
Mohammed Naserf1ac3f82025-01-18 15:49:44 -050016FROM openstack-python-runtime
Mohammed Naserda994232024-04-13 12:34:01 -040017COPY --from=build --link /var/lib/openstack /var/lib/openstack