Initial repo population
[ric-app/mc.git] / ci / Dockerfile
1 # vim: ts=4 sw=4 noet:
2
3 # -------------------------------------------------------------------------------
4 #    Copyright (c) 2018-2019 AT&T Intellectual Property.
5 #
6 #   Licensed under the Apache License, Version 2.0 (the "License");
7 #   you may not use this file except in compliance with the License.
8 #   You may obtain a copy of the License at
9 #
10 #       http://www.apache.org/licenses/LICENSE-2.0
11 #
12 #   Unless required by applicable law or agreed to in writing, software
13 #   distributed under the License is distributed on an "AS IS" BASIS,
14 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 #   See the License for the specific language governing permissions and
16 #   limitations under the License.
17 # -------------------------------------------------------------------------------
18
19 # CI to verify the MC application components
20 # Inherits C toolchain from buildpack-deps:stretch then adds cmake and better shell(s).
21
22 # It is assumed that this docker file is used with a build command run at the
23 # root level of the repo (directory containing the ci directory). E.g.
24 #       docker build -f ci/Dockerfile .
25
26 FROM buildpack-deps:stretch
27
28 RUN apt-get update && apt-get -q -y install cmake ksh
29
30 # stuff our repo things into a scratch area
31 RUN mkdir /playpen
32 ADD . /playpen
33
34
35 # add any unit test scripts that need to be driven, e.g.
36 # RUN ksh test/mcl_unit_test.ksh
37
38 #  This is a final/only script which might print useful things to the log and ALWAYS succeeds.
39 RUN ksh /playpen/ci/stats.ksh
40
41 # there is no cmd; the build/verification assumes that if the image is created
42 # successfully, e.g. none of the previous run commands fail, that the environment
43 # is successfully vetted.