blob: 723f0b74c1e113dff08525b48b42932a149a5be9 [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 Naser7bda44d2025-01-18 15:49:44 -05005FROM openstack-venv-builder AS build
Mohammed Naserd28fbaf2024-04-08 17:15:00 -04006ARG BARBICAN_GIT_REF=7d6749fcb1ad16a3350de82cd8e523d5b55306f8
7ADD --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 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