Deployment onap rename
[appc/deployment.git] / installation / appc / src / main / docker / Dockerfile
1 # Base ubuntu with added packages needed for ONAP
2 FROM onap/ccsdk-odlsli-image:v0.1.0
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/onap/appc/data/properties
7
8 # Copy the opt folder to the container's /opt folder
9 COPY opt /opt
10 RUN ln -s /opt/onap/appc /opt/appc
11
12 # Expose port 8181 for ODL REST calls
13 EXPOSE 8181