blob: 4a222e083fa636c0f0b78568a734e1cc9340e473 [file] [log] [blame]
Mohammed Naserd28fbaf2024-04-08 17:15:00 -04001# Copyright (c) 2024 VEXXHOST, Inc.
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may
4# not use this file except in compliance with the License. You may obtain
5# a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations
13# under the License.
14
15FROM registry.atmosphere.dev/library/openstack-venv-builder:zed AS build
16ARG MANILA_GIT_REF=c0fc23a39f87629b59fae7bbf46f70e3e1b459cd
17ADD --keep-git-dir=true https://opendev.org/openstack/manila.git#${MANILA_GIT_REF} /src/manila
18RUN git -C /src/manila fetch --unshallow
19COPY patches/manila /patches/manila
20RUN git -C /src/manila apply --verbose /patches/manila/*
21RUN --mount=type=cache,mode=0755,target=/root/.cache/pip,sharing=private <<EOF bash -xe
22pip3 install \
23 --constraint /upper-constraints.txt \
24 /src/manila
25EOF
26
27FROM registry.atmosphere.dev/library/openstack-python-runtime:zed
28RUN <<EOF bash -xe
29apt-get update -qq
30apt-get install -qq -y --no-install-recommends \
31 iproute2 openvswitch-switch
32apt-get clean
33rm -rf /var/lib/apt/lists/*
34EOF
35COPY --from=build --link /var/lib/openstack /var/lib/openstack