blob: 56f196eb7b49807807f1e6098b4c93ae579d60f2 [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 Naser22819092025-03-19 23:37:52 -04006# renovate: name=openstack/barbican repo=https://opendev.org/openstack/barbican.git branch=unmaintained/zed
Mohammed Naserd28fbaf2024-04-08 17:15:00 -04007ARG BARBICAN_GIT_REF=7d6749fcb1ad16a3350de82cd8e523d5b55306f8
8ADD --keep-git-dir=true https://opendev.org/openstack/barbican.git#${BARBICAN_GIT_REF} /src/barbican
9RUN git -C /src/barbican 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/barbican \
14 pykmip
15EOF
16
Mohammed Naser7bda44d2025-01-18 15:49:44 -050017FROM openstack-python-runtime
Mohammed Naserd28fbaf2024-04-08 17:15:00 -040018COPY --from=build --link /var/lib/openstack /var/lib/openstack