blob: bf0a5080f9fce91f794d8d093efe93d897597e85 [file] [log] [blame]
Scott Bakereb201f22017-04-10 11:47:58 -07001FROM xosproject/xos-base:candidate
2
3ARG XOS_GIT_COMMIT_HASH=unknown
4ARG XOS_GIT_COMMIT_DATE=unknown
5
6LABEL XOS_GIT_COMMIT_HASH=$XOS_GIT_COMMIT_HASH
7LABEL XOS_GIT_COMMIT_DATE=$XOS_GIT_COMMIT_DATE
8
9# Install the corebuilder tools and the tosca custom_types that it needs
10ADD xos/tools/corebuilder /opt/xos/tools/corebuilder
11ADD xos/tosca/custom_types /opt/xos/tools/corebuilder/custom_types
12
13ENV HOME /root
14WORKDIR /opt/xos/tools/corebuilder
15
16ENTRYPOINT ["/usr/bin/python", "corebuilder.py"]
17