1a050ec2c4
1. remove poetry dependency 2. add requirements.tx, test-requirements.txt, setup.py and setup.cfg 3. add more env into tox.ini 4. remove some command from Makefile 5. cleanup the dependencies 6. change some commands of README 7. update the devstack Depends-On: https://review.opendev.org/c/openstack/skyline-console/+/843257 Change-Id: I4cefc4cfdaadf7b3ba03ffe8441e9ae760772349
42 lines
1.3 KiB
Docker
42 lines
1.3 KiB
Docker
FROM ubuntu:20.04
|
|
|
|
ARG GIT_BRANCH
|
|
ARG GIT_COMMIT
|
|
ARG GIT_CONSOLE_COMMIT
|
|
ARG RELEASE_VERSION
|
|
ARG SKYLINE_CONSOLE_PACKAGE_URL
|
|
|
|
LABEL skyline.build_branch=${GIT_BRANCH}\
|
|
skyline.build_commit=${GIT_COMMIT} \
|
|
skyline.build_console_commit=${GIT_CONSOLE_COMMIT} \
|
|
skyline.release_version=${RELEASE_VERSION}
|
|
|
|
ENV LANG C.UTF-8
|
|
ENV LC_ALL C.UTF-8
|
|
|
|
COPY ./ /skyline-apiserver/
|
|
COPY ./container/start_service.sh /usr/local/bin/start_service.sh
|
|
COPY ./etc/skyline.yaml.sample /etc/skyline/skyline.yaml
|
|
COPY ./etc/gunicorn.py /etc/skyline/gunicorn.py
|
|
|
|
RUN export LANG=C.UTF-8 \
|
|
&& apt-get update -y && apt-get install -y --no-install-recommends apt-utils \
|
|
&& DEBIAN_FRONTEND=noninteractive apt-get install -y \
|
|
gcc make nginx traceroute lsof iputils-ping vim git wget curl locales-all ssl-cert \
|
|
python3 python3-pip python3-dev python3-venv \
|
|
&& rm -rf /usr/bin/python /usr/bin/pip \
|
|
&& ln -s /usr/bin/python3 /usr/bin/python \
|
|
&& ln -s /usr/bin/pip3 /usr/bin/pip \
|
|
&& mkdir -p /etc/skyline /var/log/skyline /var/lib/skyline \
|
|
&& cd /skyline-apiserver \
|
|
&& git init \
|
|
&& cd / \
|
|
&& pip install skyline-apiserver/ \
|
|
&& pip install -U ${SKYLINE_CONSOLE_PACKAGE_URL} \
|
|
&& apt-get clean \
|
|
&& rm -rf ~/.cache/pip
|
|
|
|
EXPOSE 443
|
|
|
|
CMD ["start_service.sh"]
|