remove call to rte_cryptodev_pmd_get_dev
[samplevnf.git] / VNF_Catalogue / Dockerfile
1 #############################################
2 #   Docker container for VNF_Catalogue WebApp
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 ENV MINIO_ACCESS_KEY vnf_minio
23 ENV MINIO_SECRET_KEY vnf_minio
24 ENV MINIO_HOST minio
25
26 RUN apt-get update 
27 RUN apt-get install vim -y
28
29 RUN mkdir -p /usr/src/app
30 WORKDIR /usr/src/app
31
32 COPY package.json /usr/src/app/
33
34 # RUN npm config set proxy http://10.4.20.103:8080
35 # RUN npm config set https-proxy http://10.4.20.103:8080
36
37 RUN npm install
38
39 COPY . /usr/src/app
40
41 EXPOSE 3000
42
43 # We wait for mysql service to come up before starting the server using a 3rd_party script.
44 CMD [ "./migration/3rd_party/wait-for-it/wait-for-it.sh", "mysql:3306", "-t", "0", "--", "./migration/3rd_party/wait-for-it/wait-for-it.sh", "minio:9000", "-t", "0", "--", "npm", "start" ]