e2b6a170bf
Include the latest refstack changes in the image. Change-Id: I14f58a726117f31a3cc986a1b5770da3b52944e6
59 lines
2.4 KiB
Docker
59 lines
2.4 KiB
Docker
# Copyright (c) 2020 OpenStack Foundation
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
# implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# upload trigger - Wed 12 May 2021 07:04 PM UTC
|
|
# refstack commit - 81928c2e10585b5be7a2d5bb51da65d6db10a70f
|
|
|
|
FROM opendevorg/python-builder as builder
|
|
|
|
RUN apt-get update \
|
|
&& apt-get -y install git apt-utils python3-dev dh-python libc-dev-bin \
|
|
libc6-dev libexpat1-dev libpython3-dev libpython3-dev linux-libc-dev \
|
|
apt-transport-https curl gnupg2 \
|
|
&& curl -sS https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - \
|
|
&& echo "deb https://deb.nodesource.com/node_15.x bionic main" | tee /etc/apt/sources.list.d/nodesource.list \
|
|
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
|
|
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
|
|
&& apt-get update \
|
|
&& DEBIAN_FRONTEND=noninteractive apt-get -q --option "Dpkg::Options::=--force-confold" --assume-yes install nodejs yarn \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN git clone https://opendev.org/osf/refstack /tmp/src
|
|
|
|
RUN assemble
|
|
|
|
RUN cd /tmp/src && yarn install
|
|
|
|
# Refstack's docs are built and then hosted by refstack UI
|
|
RUN python -m venv /tmp/venv \
|
|
&& /tmp/venv/bin/pip install beautifulsoup4 docutils \
|
|
&& /tmp/venv/bin/python /tmp/src/tools/convert-docs.py -o /tmp/src/refstack-ui/app/components/about/templates /tmp/src/doc/source/*.rst \
|
|
&& rm -rf /tmp/venv
|
|
|
|
FROM opendevorg/python-base as refstack
|
|
|
|
COPY --from=builder /output/ /output
|
|
COPY --from=builder /tmp/src/refstack-ui/app/ /refstack-ui/app
|
|
COPY ./entrypoint.sh /usr/bin/entrypoint
|
|
# TODO this should be fixed probably through proper js packaging
|
|
RUN rm /refstack-ui/app/assets/lib
|
|
COPY --from=builder /tmp/src/node_modules/@bower_components/ /refstack-ui/app/assets/lib
|
|
RUN /output/install-from-bindep \
|
|
&& rm -rf /output
|
|
|
|
ENTRYPOINT ["/usr/bin/entrypoint"]
|
|
CMD ["pecan", "serve", "/usr/local/lib/python3.7/site-packages/refstack/api/config.py"]
|