fbf0a3bec615b02a90405baf876cd090e161341f
[appc/deployment.git] / installation / appc / src / main / docker / Dockerfile
1 # Base ubuntu with added packages needed for ONAP
2 FROM onap/ccsdk-odlsli-image:0.1.0-SNAPSHOT-STAGING-170911-232547
3 MAINTAINER APP-C Team (appc@lists.openecomp.org)
4
5 # Set the Env. Variable in the container to add the APPC CONFIG DIR (the SDNC_CONFIG_DIR is inherited from SDNC Image)
6 ENV APPC_CONFIG_DIR /opt/openecomp/appc/data/properties
7
8 # Copy the opt folder to the container's /opt folder
9 COPY opt /opt
10 RUN ln -s /opt/openecomp/appc /opt/appc
11
12 # Expose port 8181 for ODL REST calls
13 EXPOSE 8181