9e8216aa5e
Shpinx incorrectly claims it wants docutils >=0.18 but that is an error and older versions fail with that, as mentioned here: https://github.com/sphinx-doc/sphinx/issues/9841 Additionally, the repo URL for OpenSUSE 15.3 python has changed. Change-Id: I9bee6cf3ad7aaba80a44f2bd2f917b16c776c0d7
75 lines
2.4 KiB
Docker
75 lines
2.4 KiB
Docker
ARG FROM=opensuse/leap:15.3
|
|
FROM ${FROM}
|
|
ARG CFSSLURL=https://pkg.cfssl.org/R1.2/cfssl_linux-amd64
|
|
|
|
LABEL org.opencontainers.image.authors='airship-discuss@lists.airshipit.org, irc://#airshipit@freenode'
|
|
LABEL org.opencontainers.image.url='https://airshipit.org'
|
|
LABEL org.opencontainers.image.documentation='https://airship-pegleg.readthedocs.org'
|
|
LABEL org.opencontainers.image.source='https://opendev.org/airship/pegleg'
|
|
LABEL org.opencontainers.image.vendor='The Airship Authors'
|
|
LABEL org.opencontainers.image.licenses='Apache-2.0'
|
|
|
|
ENV LANG=C.UTF-8
|
|
ENV LC_ALL=C.UTF-8
|
|
ARG DECKHAND_VERSION=branch/master
|
|
ARG SHIPYARD_VERSION=branch/master
|
|
ARG PROMENADE_VERSION=branch/master
|
|
|
|
RUN set -x \
|
|
&& zypper up -y \
|
|
&& zypper --non-interactive install \
|
|
automake \
|
|
curl \
|
|
gcc \
|
|
git-core \
|
|
libtool \
|
|
make \
|
|
openssh \
|
|
python3 \
|
|
python3-dbm \
|
|
python3-devel \
|
|
python3-pip \
|
|
python3-setuptools \
|
|
which \
|
|
&& zypper --non-interactive ar -f https://download.opensuse.org/repositories/devel:/languages:/python/15.3/devel:languages:python.repo \
|
|
&& zypper --non-interactive --gpg-auto-import-keys refresh devel_languages_python \
|
|
&& zypper --non-interactive install python3-six-1.16.0-lp153.103.1.noarch
|
|
RUN pip3 install -U pip \
|
|
&& zypper clean -a \
|
|
&& rm -rf \
|
|
/tmp/* \
|
|
/usr/share/doc \
|
|
/usr/share/doc-base \
|
|
/usr/share/man \
|
|
/var/log/* \
|
|
/var/tmp/*
|
|
|
|
ENV LD_LIBRARY_PATH=/usr/local/lib
|
|
|
|
ARG LIBYAML_VERSION=0.2.5
|
|
RUN set -ex \
|
|
&& git clone https://github.com/yaml/libyaml.git \
|
|
&& cd libyaml \
|
|
&& git checkout $LIBYAML_VERSION \
|
|
&& ./bootstrap \
|
|
&& ./configure \
|
|
&& make \
|
|
&& make install \
|
|
&& cd .. \
|
|
&& rm -fr libyaml
|
|
|
|
VOLUME /var/pegleg
|
|
WORKDIR /var/pegleg
|
|
|
|
COPY requirements.txt /opt/pegleg/requirements.txt
|
|
RUN pip3 install -r https://opendev.org/airship/deckhand/raw/${DECKHAND_VERSION}/requirements.txt \
|
|
&& pip3 install -r https://opendev.org/airship/promenade/raw/${PROMENADE_VERSION}/requirements.txt \
|
|
&& pip3 install -r https://opendev.org/airship/shipyard/raw/${SHIPYARD_VERSION}/src/bin/shipyard_client/requirements.txt \
|
|
&& pip3 install --no-cache-dir -r /opt/pegleg/requirements.txt
|
|
|
|
COPY tools/install-cfssl.sh /opt/pegleg/tools/install-cfssl.sh
|
|
RUN /opt/pegleg/tools/install-cfssl.sh ${CFSSLURL}
|
|
|
|
COPY . /opt/pegleg
|
|
RUN pip3 install -e /opt/pegleg
|