d02db953dc
Used to be: git.openstack.org/openstack/monasca-persister?h=stable/pike Now : opendev.org/openstack/monasca-persister/src/branch/stable/pike Since the way links to specific branches changed, usage of those links has to be changed as well. CONSTRAINTS_BRANCH variable was removed because CONSTRAINTS_FILE contains link to the upper-requirements file with specified branch. Story: 2005666 Task: 31056 Depends-On: https://review.opendev.org/659073 Change-Id: Iea51da2f0d3c19ffd5b3204d495d01e4c9b31750
24 lines
657 B
Docker
24 lines
657 B
Docker
ARG DOCKER_IMAGE=monasca/client
|
|
ARG APP_REPO=https://review.opendev.org/openstack/python-monascaclient
|
|
|
|
# Branch, tag or git hash to build from.
|
|
ARG REPO_VERSION=master
|
|
ARG CONSTRAINTS_BRANCH=master
|
|
|
|
# Always start from `monasca-base` image and use specific tag of it.
|
|
ARG BASE_TAG=master
|
|
FROM monasca/base:$BASE_TAG
|
|
|
|
# Environment variables used for our service or wait scripts.
|
|
ENV \
|
|
MONASCA_URI=monasca:8070 \
|
|
OS_AUTH_URL=http://keystone:35357/v3 \
|
|
OS_USERNAME=mini-mon \
|
|
OS_PASSWORD=password \
|
|
OS_TENANT_NAME=mini-mon \
|
|
OS_DOMAIN_NAME=Default
|
|
|
|
RUN monasca --version
|
|
|
|
# Implement start script in `start.sh` file.
|
|
CMD ["/start.sh"] |