Jobs on Compass often timeout
[releng.git] / utils / test / vnfcatalogue / VNF_Catalogue / migration / Dockerfile
1 ###############################################################
2 #   Docker container for VNF_Catalogue Schema Migration Service
3 ###############################################################
4 # Purpose: Don't run it from here! Use docker-compose(See README.md)
5 #
6 # Maintained by Kumar Rishabh :: penguinRaider
7 ##
8 # All rights reserved. This program and the accompanying materials
9 # are made available under the terms of the Apache License, Version 2.0
10 # which accompanies this distribution, and is available at
11 # http://www.apache.org/licenses/LICENSE-2.0
12 #
13
14 FROM node:boron
15 MAINTAINER KumarRishabh::penguinRaider <shailrishabh@gmail.com>
16 LABEL version="v0.0.1" description="Open Source VNF_Catalogue for OPNFV"
17
18 ENV DB_HOST mysql
19 ENV DB_USER vnf_user
20 ENV DB_PASSWORD vnf_password
21 ENV DB_DATABASE vnf_catalogue
22
23 RUN mkdir -p /usr/src/app
24 WORKDIR /usr/src/app
25
26 COPY package.json /usr/src/app/
27
28 RUN npm install
29
30 COPY . /usr/src/app
31
32 # The ordering of events should be coming up of mysql service and then migration
33 # of schema for the database. To enforce this causal relationship we use a 3rd_party script.
34 CMD [ "./3rd_party/wait-for-it/wait-for-it.sh", "mysql:3306", "-t", "0", "--", "node", "migrate"]